How do I make a quick filter in JQL to display my "ToDo" and "Triage" statuses by creation?

Trevor Buswell December 12, 2017

I am trying to make a quick filter that organizes my KanBan backlog to display the following:

"ToDo" + "Status" order by creation

ToDo is our priority list and we have a few statuses in our backlog to help support manage where the ticket is at. 

Statuses could be "Triaged", "Analysis" and etc. 

I have this so far:
status = "Triaged" ORDER BY created

 

It is filtering by Triaged, but the ordering is not correct and I would like to add To Do as a status.

1 answer

0 votes
Dave Theodore [Coyote Creek Consulting]
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
December 12, 2017

I'm not sure exactly what you're asking for, but it sounds like you want to include issues from more than one Workflow Status?  If that is correct, the syntax looks something like this:

status in (Triaged,"In Progress",ToDo) ORDER BY created

 The "in" operator indicates a list and the contents are delimited by commas and encapsulated by parenthesis.

Trevor Buswell December 12, 2017

This worked actually. My goal was to display two status types in the backlog at once. Thanks!

Suggest an answer

Log in or Sign up to answer