Hello Attlassian,
I will need your help.
The following JQL will produce error rather than producing zero result.
field1 is a dropdown menu field and the value "XXXXX" does not exist.
JQL:
project="project1" AND field1 = "XXXXX"
I will need to use logical express OR to see if the value "XXXXX" exist in either project.
(project="project1" AND field1 = "XXXXX") or (project="project2" AND field2="XXXXX")
This JQL produces error. How do I go about searching for "XXXXX" in the fields (dropdown) when I do not even know if the value exist in either of the fields?