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.
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
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.