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 ?
@Mehul Tailor Could you try the following?
description !~ XX order by description DESC
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.