2

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.

newmarylandjersey
  • 111
  • 1
  • 3
  • 12

1 Answers1

6

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
Scott Dudley
  • 3,256
  • 1
  • 18
  • 30