I have a multi-select custom field (Let's call it MSCField) in all issues in my JIRA project and I want to be able to create a JQL query that returns all issues where the selected value in that custom field contains a particular string.
For example, if the possible selectable values in MSCField are:
A111, A222, A333, B111, B222, B333
...I want to create a query that returns all issues where the selected value in the MSCField contain the letter A. So it will return all issues where the selected value is A111 or A222 or A333. But it will not return issues where the selected value is B111, B222 or B333.
I have tried using things like:
"MSCField" IN "A"
"MSCField" ~ "A"
"MSCField" = "A*"
and none of them work.
Can anyone help me out here?
In case relevant, I've been told that a more specific name for the type of custom field I have here is "Select List (single choice".