Is there a way to have Jira sort by Priority, and then rank the issue within Priority by the Due Date? I want to be able to place a secondary ordering so that my developer knows that even though he has 3 blocker issues, there is one I need him to do first. I applied due dates with the hope that when they were displayed, it would re-order them, but nothing happened.
I'm looking for a way to further prioritize without having 10 different priority levels. People just start ignoring the levels at that point.
Any help is greatly appreciated!
Using JQL, this should fit your needs:
project = PROJ AND resolution IS EMPTY AND ORDER BY priority DESC, dudate DESC
Having the same wish like the tread starter - don't work here...
Working in JIRA Software Cloud.
JQL: priority != Highest AND status != Done ORDER BY priority DESC, duedate DESC
Result:
2017-01-10_09h56_42.png
An AND between "status!=Done" and "ORDER BY" result in an error.
What's wrong? Any ideas appreciated, thx in advance!
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.
Here is my disclaimer - I'm not a developer! Looking at the above: project = PROJ AND resolution IS EMPTY AND ORDER BY priority DESC, dudate DESC
If the issue is resolved and reassigned back to me, and I determine it's not complete and reopen it, will this sort still work,
or do I need something that says if the resolution is not closed?
Thanks for the help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here is my disclaimer - I'm not a developer! Looking at the above: project = PROJ AND resolution IS EMPTY AND ORDER BY priority DESC, dudate DESC
If the issue is resolved and reassigned back to me, and I determine it's not complete and reopen it, will this sort still work, or do I need something that says if the resolution is not closed?
Thanks for the help!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It depends. If your workflow clears the resolution field on a reopen, then the issue would show up in this filter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Justin,
Would you be able to tell me where specifically this code is supposed to go? Can you give me a URL or a screen shot showing the appropriate editor? We are using the default settnigs of workflow, but I'm not sure how to tell if the resolution field is cleared or not. This is what I have:
Thanks so much for your help!
![]() View Workflow Steps — jiraShared by1 project |
This shows all of the steps for jira. Not editable because workflow is Active.
|
Open (1) | ![]() |
Start Progress (4) >> In Progress Resolve Issue (5) >> Resolved Close Issue (2) >> Closed |
|
In Progress (3) | ![]() |
Stop Progress (301) >> Open Resolve Issue (5) >> Resolved Close Issue (2) >> Closed |
|
Resolved (4) | ![]() |
Close Issue (701) >> Closed Reopen Issue (3) >> Reopened |
|
Reopened (5) | ![]() |
Resolve Issue (5) >> Resolved Close Issue (2) >> Closed Start Progress (4) >> In Progress |
|
Closed (6) | ![]() |
Reopen Issue (3) >> Reopened |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you open action #3 (Reopen Issue), there should be a Post Function that indicates the Resolution field will be cleared of its value.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found the Post Function and it does indicate the resolution will be cleared. Thanks!
Would you be able to tell me where specifically this code is supposed to go? Can you give me a URL or a screen shot showing the appropriate editor? Sorry, so not a developer.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you give me more specifics on where the code has to be placed?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Click Issues and select Advanced Search. You can input the JQL query there.
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.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.