I have the following query that searches for two custom fields
project in ("Project") and ("Field1") and ("Field2") is not EMPTY
When I try the query below it works, I just can't seem to figure out how to search two custom fields. I tried with and without () also with and without "". I am trying to search for any fields that are not empty but have multiple fields to search.
project in ("Project") and "Field1" is not EMPTY
Any suggestions?
This worked for me.
(project in ("Project") and "Field1" is not EMPTY) OR (project in ("Project") and "Field2" is not EMPTY)
The problem is that you've only got half a clause in your query:
As you entered this into the JQL box, it would have told you that "and" was wrong after the end of that clause.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Project = xxx and custom1 is not empty and custom2 is not empty And custom3 is not empty...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use of quote for custom field is optional if the field is a single word but required if multiple words.
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.