Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hello,
in my JQL, i want to filter all standard issues (Epic and story) excepted to those are done one month ago. Indeed, I will got all issues that the status have not passed to done this current month.
I put this, does not go well:
(statusCategory != Done AND status changed after -30d) AND issuetype in standardIssueTypes()
Thank you for your reply
how about this...
statuscategory != done or status was done after startOfDay(-30)
now this will return any issue not in a done status category as well as any in the DONE status within the last 30d. Please note you cannot use statuscategory with any history operators (e.g. WAS) so you would need to include each "done" status in the above JQL
Hello, I don't want issues with "OR", I don't want issues that are DONE before the last 30 days. And with issuetype in standardIssueTypes()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, there was an error in my original filter. Does this get you closer?
Project =test and (statuscategory != done or status was not done before startOfDay(-30d) and issuetype in standardIssueTypes())
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.
Are you saying that you don't want to include any issues that were created more than 30 days ago and not yet done? You can simply add the standardIssueTypes() to my suggested JQL as below.
statuscategory != done or status was done after startOfDay(-30) and issuetype in standardIssueTypes()
if I'm still missing the mark here please try to be explicit on what you precisely are looking to have returned by the query.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't want to include the issues that were passed to status Done more than 30 days ago. For example, I have an issue passed to Done on 25th of March, I don't want to back up this issue.
Moreover, I need only standard issues: EPIC and story, not subtasks.
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.