I need to show in a dashboard the newest issues that was assignee to me. I made a filter, but it return in the frist and secund places issues that are old than the third and Fourth place. here is the jql that I made:
" assignee = USER.JIRA AND status not in (STATUSes THAT DON'T matter) ORDER BY updated DESC "
Thanks!
Besides the change proposed by Gabrielle, I'd suggest changing
status not in (STATUSes THAT DON'T matter)
with
statusCategory != Done
That change will probably match your needs provided the statuses you are using were well categorised- and make your JQL query more readable and easier to maintain.
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.