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 had this filter "created >= 2021-01-01", which didn't show past items that were created earlier but closed within the past month. I'm trying to set a filter like this "status = ("Closed - No Action") >= 2021-01-01" to focus only on items closed in the past month regardless of when it was created, which isn't valid. Is there any way to fix this?
Hi @Nor Habboub
The JQL goes like this
status changed to closed AND updatedDate <= -3d
This results in issues where the status was changed to closed, more than 3 days back.
You can also specify the date here.
Thanks,
Pramodh
My suggestion is to use BEFORE , so you will get all issues that transition to closed before your specific date.
status changed to closed BEFORE 2021-01-01
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Nor Habboub , welcome on the community. There are "historical" operators in JQL for status field. I think this query should work for you (will display issues whose status was changed to Closed after start of current month:
I found an article with short description here: https://moduscreate.com/blog/historical-operators-jql-search/
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.