I want to be able to sort my issues more than one field in Jira.
As an exaple I want the results sorted by Status and then Rank
Hi @Scott Milton ,
order by status, rank
Works this way with just a comma delimiter between "by" clauses. However not all field names are accepted, and some are converted, e.g. from "created" to "createdDate". or to cf[10109].
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
!Old method!
Jira's issue search interface (JQL) does not natively support multi-level sorting, you can try.
1. Use the Basic Issue Search: Navigate to the "Issues" section. Click on "Search for issues".
2. Choose your filter criteria: You can add other filters if needed.
3. Sort by the primary field: Click on the column header for "Status" to sort by status first. Depending on your view settings, this will sort either ascending or descending. Clicking the header again will reverse the sort order.
4. Sort by the secondary field: After you've sorted by "Status", click on the column header for "Rank" to then sort by rank. This will apply a secondary sort, meaning issues with the same status will be further sorted by rank.
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.