How to show issues that are unresolved OR have been resolved within last week?

Ahmed Alghamdi April 20, 2021

We are maintaining an Action list dashboard, where we meet with executives weekly to show what issues have been resolved within last week, as well as issues that are still unresolved

 

how can i combine both in one JIRA query ?

below is the query i've but it's giving me all resolved actions, not just the past 12 days as specified 

issuetype = Action AND resolution in (Unresolved, Done) AND "Action Reference" = "Remittance weekly meeting" OR resolved >= -12d

Also tried this

project = PMO AND issuetype = Action AND resolution = Unresolved OR resolved >= -12d AND "Action Reference" = "Remittance weekly meeting" 

it it gave me all actions! with all resolutions.. :( 

1 answer

1 accepted

0 votes
Answer accepted
John Funk
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 20, 2021

Hi Ahmed,

Try this:

issuetype = Action  AND "Action Reference" = "Remittance weekly meeting" AND (resolution in (Unresolved) OR resolved >= -12d)

Ahmed Alghamdi April 20, 2021

It worked ! thanks a LOT

Like John Funk likes this
John Funk
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 20, 2021

Great!

Suggest an answer

Log in or Sign up to answer