I am trying to filter out the blocked issues from the different filters in my dashboard.
According to what I understand it should be:
issuelinktype not in ("is blocked by")
for some reason, it doesn't show anything for me.
The full formula I'm using:
project in (IT, "DO", DS, QA, "Apps / Websites") AND status in (New, Processing, Review) *AND Issuelinktype not in ("is blocked by")* AND (duedate <= -0d OR duedate = EMPTY) AND priority = High ORDER BY "DS Version" ASC, status DESC
Hey guys,
Thanks for all the help.
Eventually, the solution that worked was suggested by Prince N:
issueLinkType in ("is blocked by")
Save above as filter. Then search the filter as below
E.g.
filter not in (filter1)
Make sure to include issues without the links as well:
... (Issuelinktype not in ("is blocked by") OR issuelinktype is empty) ...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Couple of things
Do you need to add the other Blocked link type definition? i.e. Issuelinktype not in ("is blocked by", blocks)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
but I don't want to see only the issues that are blocked..
If its an issue that blocks others I do want to see it...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What is the result that you currently get? Did you check if issues that should be filtered out have more than one link inside?
Seba
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The result I'm getting is - not finding any issues.
None of them have more then one link inside.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you getting any errors, or just no results?
What JQL are you using now?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
No error, just not results.
What do you mean by "What JQL"? on Jira Work Managment?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I mean, are you still using this (exactly), or have you changed it?
The full formula I'm using:
project in (IT, "DO", DS, QA, "Apps / Websites") AND status in (New, Processing, Review) *AND Issuelinktype not in ("is blocked by")* AND (duedate <= -0d OR duedate = EMPTY) AND priority = High ORDER BY "DS Version" ASC, status DESC
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.