For example:
project = "ACC" and "Roles with direct authority[Checkboxes]" in ("IT Director", "QA/RA Director", "Development Director") and !("Main Responsible Role[Checkboxes]" in ( "IT Director", "QA/RA Director", "Development Director")) ORDER BY created DESC
This query is not working, but I wanted to make it so that in one field you have precisely these matches and in another, you will not have them.
So, is there a way I can do that?
Best regards,
Vladimir
JQL propose a "not in" option. Can you try the folowing:
project = "ACC" and "Roles with direct authority[Checkboxes]" in ("IT Director", "QA/RA Director", "Development Director") and "Main Responsible Role[Checkboxes]" not in ( "IT Director", "QA/RA Director", "Development Director") ORDER BY created DESC
Best Regards,
Seif,
I got the answer, I just missed one ")" at the end. Now it's working, but thanks for help!
Best regards,
Vladimir
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.