Hello,
I'm looking for some equation, of all the links linked to my project
I try this one but it doesn't work :
"project = FA AND type = "Embedded Software" AND Created>= "2022-04-01" AND Created<= "2022-07-01" AND (priority in ("Immediate", High) OR "Severity - FA" in (4, 5) AND "Support Priority" in (High, "Immediate")) AND linked issues is not is not empty"
thanks.
Hi
I see two places that would cause the query to fail: "linkedissues" should be one word, and the "is not" operator is in there twice.
Try this:
project = FA AND type = "Embedded Software" AND Created>= "2022-04-01" AND Created<= "2022-07-01" AND (priority in ("Immediate", High) OR "Severity - FA" in (4, 5) AND "Support Priority" in (High, "Immediate")) AND linkedIssue is not empty
Hope this helps,
-Scott
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.