Forums

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

Filter issues that are blocked

Tony November 14, 2018

Hi All,

I am trying to write a filter that will show me all tickets in a project that are not done but have a linked issues which blocks that ticket. Ive got this far with a query, but its not working correctly. It brings back any task that is blocked or causes a block in any project not just in "Project Name"

 

project in ("Project Name") AND issueFunction in hasLinks("is blocked by") or issueFunction in hasLinks("blocks") AND status not in (Done)

 

Can anyone help as I am a little stuck. 

1 answer

1 accepted

1 vote
Answer accepted
Deleted user November 14, 2018 edited

Hi @Tony,

Since you have an OR statement you will need to wrap it. So it should be something similar to this;

project in (Project) AND (issueFunction in hasLinks("is blocked by") or issueFunction in hasLinks("blocks")) AND status not in (Done)

I think that is correct though let me know if I have misunderstood

Tony November 27, 2018

Thanks @[deleted] works perfectly! 

Suggest an answer

Log in or Sign up to answer