I just want to see a list of all the Jira issues created in my section and sort them in chronological order. I can't find anything when they are sorted by priority and a mixed to completed and still open.
You can simply create a filter that ends with ORDER BY. You can order by almost anything and you can combine ordering. Here are some examples:
project = mysection ORDER BY createdDate
project = mysection ORDER BY createdDate, assignee
project = mysection ORDER BY createdDate ASC
project = mysection AND resolution IS EMPTY ORDER BY createdDate DESC
project in (mysection, myproject, anotherproject) ORDER BY createdDate
Add ASC for ascending order if needed, it defaults to DESC so you don't need to add that.
Tune the filter according to your need. Save it (and share it if you want). You can reuse this filter in your dashboards, Kanaban etc.
TimK.
Hi @mccabe
Go to Filters->View all issues.
Filter the assignee as current user and search. Once the list appears you can sort any column just by clicking on it in the table.
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.