newmarylandjersey
newmarylandjersey

Reputation: 111

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.

Upvotes: 2

Views: 1261

Answers (1)

Scott Dudley
Scott Dudley

Reputation: 3298

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

Upvotes: 6

Related Questions