Hi
I have a Board with a number of status columns. I want a FIFO principal to be applied to each of the columns. This essentially is a first come first serve queue. However, I still need to rank the tickets i.e. a user can move a ticket up or down in the queue. The next referesh of the board, must then keep the order of the tickets in the queue
I have used project = "Project Name" ORDER BY updatedDate ASC, however this does not allow me to manually rank the tickets in a column
In order to add Rank and persist rank on the board so that users can rank the issues you have to add the Rank field in the filter query, try changing your query to
project = "Project Name" ORDER BY RANK DESC, updatedDate ASC
Hi
Thanks for the response. I tried your suggestion but:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.