The following not working...
project in (One, Two) AND (issuetype in (Dependency, Feature) AND Priority = "High") AND issuetype=Risk
In other words I only want Dependencies and Features with high priority and All risks from projects One and Two( irrespective of priority
Is this possible? Thank you
Hi @Chacha20
project in (One, Two) AND (issuetype in (Dependency, Feature) AND Priority = "High") OR project in (One, Two) AND issuetype=Risk
You could make this a little cleaner.
((issuetype in (Dependency, Feature) AND Priority = "High") OR issuetype=Risk) AND project in (One, Two)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Chacha20
Modify your JQL query:
project in (One,Two) AND issuetype in (Dependency, Feature, Risk) AND priority = High
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have you defined an issue type of a Risk in your project? Do you have issues created from this issue type?
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.