Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Mismatched status of initiatives

Justin Peters
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
November 30, 2023

Hello Everyone,

I'm trying to build a filter that looks for initiatives in a new or closed status with epics that are in progress. An example of this would be a new status initiative with an in progress epic.

This is the filter I created to solve it.

Issuetype = Initiative AND Status IN (Closed, "Under Refinement", "New") AND issueFunction in linkedIssuesOf("STATUS ='In Progress' AND ISSUETYPE = EPIC")

The problem I am having is that it is picking up on "associated epics" that are currently in progress. Is there any way to change or update the filter to not include associated epics? 


2 answers

0 votes
Ste Wright
Community Champion
November 30, 2023

Hi @Justin Peters 

Can I confirm you want to get as results...

  • Initiatives which are in the Statuses Closed, Under Refinement, or New
  • That have direct child Epics which are In Progress

...is this correct?

---

Have you tried this?

issuetype = Initiative AND status IN (New, Closed, "Under Refinement") AND issueFunction in portfolioParentsOf("issuetype = Epic and status = 'In Progress'")

Ste

0 votes
Tansu Akdeniz
Community Champion
November 30, 2023

Hi @Justin Peters 

Welcome to the community.

What do you mean by "associated epics"?

Your query searches for linked issues. However, there is also a function called epicsOf. Please take a look this page.

Suggest an answer

Log in or Sign up to answer