I am struggling with something simple.. I want to filter out a few issues which have XX in front of the description line and sort all issues by Desc ( description) . How would I use JQL for that ?
sort by Desc AND issue not like "XX" does not work.
Any ideas ?
Hello Tailor,
You can get the result using JQL Search Extensions.
issue in regex("description", "XX*") order by description
This jql will matches issues with description field starting with XX
The full documentation can be found here.
Regards,
Ziad
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.