Hi
I am trying to filter for issues where priority and/or original estimation is empty. Currently the filter is only returning the issues where one of the fields is empty, but not if both are empty. What should i change to get the correct filter?
Here is what i have now:
project = PMO AND status in (Approval, Open) AND (originalEstimate != EMPTY OR priority != EMPTY)
I think, your JQL should look like this:
project = PMO AND status in (Approval, Open) AND (originalEstimate is EMPTY OR priority is EMPTY)
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.