Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

JQL Query: How to setup a Filter for a FIFO column

Andre May July 24, 2018

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

1 answer

0 votes
Tarun Sapra
Community Champion
July 25, 2018

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
Andre May July 26, 2018

Hi

Thanks for the response. I tried your suggestion but:

  • The tickets are still not in FIFO order on the board
  • I still cannot manually change the "FIFO Order" of tickets in a queue i.e. I cannot drag a card that is last in the queue to be right at the top of the same queue or vise versa. 

Suggest an answer

Log in or Sign up to answer