Hi,
I have a custom filed (defined as a single selection picker) that provides 3 options:
Yes
No
None (This value is added by default and I cannot remove it, even if the field is required)
So, I try to use a JQL filter to hide the internal request, like this:
"Is Internal Request" = Yes OR "Is Internal Request" = null OR "Is Internal Request" is Empty
"Is Internal Request" != No
not ("Is Internal Request" = No)
But none of these is working. do you have any idea how to fix this?