I have need to filter a sub portion of a value from a summary field such as "black-small" from the list. The prefix and numeric extension should be ignored. I just want black-small:
dogs-black-small005
dogs-white-large001
dogs-white-small004
dogs-brown-small007
dogs-black-small001
Atlassian JIRA Project Management Software (v7.2.12#72014-sha1:3bc6048:node4)
THX
@Judith Alvarez Try below JQL
Summary ~ "black-small*"
Hope this helps!
https://confluence.atlassian.com/jiracorecloud/advanced-searching-operators-reference-765593718.html
Thanks. I had already tried that unsuccessfully. It finally worked once I moved the value to the front of the line (I had multiple values).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
https://scriptrunner.adaptavist.com/latest/jira/jql-functions.html#_issuefieldmatch which requires the ScriptRunner plugin. There may be other plugins that can do this
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.