Search code examples
jirajira-agile

jira search ascending oldest to newest.


This currently is my search for lira issues "project in ("project a", "project b") AND status not in (Resolved, Closed) ORDER BY createdDate".

What would I have to change or add to make it so it is ascending which would display issues starting with the oldest ticket to the newest ticket.


Solution

  • You would simply add "ASC" to the ORDER BY clause, like this:

    project in ("project a", "project b") AND status not in (Resolved, Closed) ORDER BY createdDate ASC