Hi,
Can you please suggest a better way for writing a jql query..
Have certain condition that for one issuetype(Story) it should show status done,open and for the other issue type in bug,Change Request it should show the status with INPROGRESS,VERIFY etc... If I mention OR condition it takes only one suitable and displays one result only. But I need to achieve in query with OR condition.
Do we need to create two seperate boards??
How to achieve in one single query and for one board.
Regards,
Suma
To get issues of different issuetype and specific status for each issuetype, you can use combination of AND, OR and parentheses :
(issuetype = Story AND status in (Done, Open)) OR (issuetype in (Bug,"Change Request") AND status in ("IN PROGRESS",VERIFY))
Hope this helps!
Regards,
Suprija
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.