In active sprint we can drag tasks to order them by our desired priority from top to bottom.
I'd like to create a filter in JIRA to be used in my Dashboard, that will display a list of tasks from current sprint - and add ORDER BY the sorting i've done in the sprint by dragging tasks (from top to bottom)
I wrote this JQL:
project = Project_name AND issuetype in (standardIssueTypes(), subTaskIssueTypes()) AND sprint in openSprints()
But i don't know what param to put with ORDER BY
Any suggestions?
Hi @Ofer Shapira,
My suggestion would be to ORDER BY rank so long as the sprint is referred to in your JQL query.
Hope this helps
It's not perfect but its good enough. I've also added order by status, which makes it a bit more accurate
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.