If I have a query like :
Key in (TR-3000, MP-207, TR-1000, ST-420,...)
is there a way to have the output ordered the way the list looks, rather than sorted by project then key number? Looking for
KEY Summary Priority Status
TR-3000 asdfdfaa asfd asdf
MP-207 asdfdfaa asfd asdf
TR-1000 asdfdfaa asfd asdf
ST-420 asdfdfaa asfd asdf
...
Hi @Christopher Hogan - Short answer is no. However, if you have business logic driving the order you're entering the issues, you could leverage that same business logic to display in that same order. For example...
key IN (TR-3000, MP-207, TR-1000, ST-420) ORDER BY created ASC
key IN (TR-3000, MP-207, TR-1000, ST-420) ORDER BY Rank ASC
Ultimately, you need a field to base any ordering against.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.