Hello,
Im trying to create a JQL Filter but need help with a column.
As you can see in the screenshot, we´ve got the field "Ist abgerechnet". This field has two options. Either you select "Yes" or "No".
So in my JQL Filter I want that only "No" is selected and it shouldn´t show the issues with "Yes".
Current Filter with "ist abgerechnet":
resolution = Unresolved AND status != Geschlossen ORDER BY project ASC, rank ASC, issuetype ASC, key ASC, created DESC
The field:
The JQL filter with that field (but without selection of Yes or No)
Hi @[deleted] , I’m not quite following you here. It sounds like you have a custom field that has a yes or no value and you want to exclude all issues that have yes in that field. Is that correct? Maybe the following is what you’re asking for?
resolution = Unresolved AND status != Geschlossen and "ist abgerechnet" = “no” ORDER BY project ASC, rank ASC, issuetype ASC, key ASC, created DESC
No it did not work. It shows an error with the filter
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.
I have a custom field which I created in the Tempo Application for Jira. Now I want to retrieve the value of this field inside of a JQL filter. Is that possible?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am unsure to be honest as I do not use Tempo. If you can reference within JQL then you can.
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.