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 , 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/
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
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.