You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
I was trying to create a special filter. I called it "Archieved" and after clicking it I'd like to hide issues ONLY in "Done" column and updatedDate older than 5 days. So basically, issues done some time ago, because I have like a 80 issues in "Done" column.
This is my filter: updatedDate >= -5d AND status != Done
Can you help me? I think this "AND" doesn't work.
Hi @Adam Kwietniak ,
Let's start by finding the JQL that returns the ones you want to hide. It is
updatedDate<-5d AND status=DONE
Now, negate the above JQL and we are done.
updatedDate >= -5d OR status != DONE
Hope it works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I need to do something similar, but I need to see all the issues in a project that were completed in the last 5 weeks. So
Project = ABC and status = Done AND updatedDate --is within the past 5 weeks--
I've tried updatedDate < 5w but I'm not able to narrow it down by the time frame I need. Any suggestions?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
updatedDate <-5w returns all updates including status changes. But you are specifically looking for status transition update. So below can work.
Project = ABC and status = Done AND status changed TO "Done" during (-5w, now())
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.
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.