Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I order tickets by ticket name and ticket number in JIRA?

Tags:

jira

I have a JIRA project AAA and lots of tickets like AAA1, AAA2, AAA3

I'd like to search the tickets ordered by the name and ticket number, so it shows like this:

AAA1
AAA2
AAA3

what key word I should use for the filter?

I tried using 'order by Created', most of the tickets are displayed in order, but the one moved from other project is not in order because in the other project, it was created earlier.

like image 942
Victor Avatar asked Feb 11 '15 16:02

Victor


People also ask

How do I sort tickets in Jira?

In your plan, click the View settings drop-down. In the Sort by section, choose how you want the issues to be sorted by.

How do I find the ticket number in Jira?

To use the quick search: Enter your search criteria in the search box in the header bar of Jira and press Enter. Tip: If you know the issue key or project key, enter it before other search terms, e.g. "JRA help link is broken".

What is the ticket number called in Jira?

it is called the key.


1 Answers

In a JQL query, end the query with :

ORDER BY key

like image 160
Laurent Jalbert Simard Avatar answered Oct 04 '22 16:10

Laurent Jalbert Simard