How to ORDER BY two fields like priority and created

Kenneth Lund October 28, 2020

How can I create a search filter to with order by two or more fields? Like by priority and created date. Is that possible?

1 answer

0 votes
Walter Buggenhout
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
October 28, 2020

Hi @Kenneth Lund ,

That is definitely possible. To use you own example, just write:

Project = XX ORDER BY Priority, Created

You can even play around with sort order like this if you like:

project = Amplifly order by priority ASC, created DESC
Kenneth Lund October 30, 2020

Perfect, thanks!

Suggest an answer

Log in or Sign up to answer