Hello -
I am trying create a query to:
- A specific project
- Stories
- System Impacted (custom field)
- Status: closed in the last 7 days
Everything is pulling up perfectly, except for the Status. It works if I use Status = Open, but no other options (and I have stories in statuses of In Progress, Ready to Work, In Review and Closed).
Here is my query that works:
project = MOP AND status = Open AND issuetype = Story AND "System Impacted" = Jira
What do I need to modify?
Hi @Lindsay Kirsch, the following query should work. Not that this might not work with JPD project, as they do not set a resolution when an issue is completed.
project = MOP
AND status = Open
AND issuetype = Story
AND "System Impacted" = Jira
AND resolutiondate >= -7d
@Lindsay Kirsch assuming 'Closed' is the terminal status, you may try a JQL like this
"project = MOP AND AND issuetype = Story AND "System Impacted" = Jira AND resolved >= -7d"
Hope this helps. Let me know if this works for you.
Best,
Sujeet
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.
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.