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?
Thanks @Fabio Racobaldo _Herzum_ ,
First, I forgot to mention, it is not JIRA cloud, but JIRA server version 8.22.
The field is required and the default value is Yes. But when creating a ticket the None is still there.
And I have try "Is Internal Request" is Empty -> but I have no ticket at all :-(
Thanks
try to perform a reindexing first for your project
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The reindexing fixed the situation. It was the problem. Thanks
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.
Welcome to the Atlassian Community!
Select lists show a placeholder text of "none" for us humans, it's more clear than an empty line.
The data in the field when you select "none" is actually nothing. The database doesn't even have a row for the field content, there's nothing there at all.
So, your JQL to find issues where the value is empty is simply " "internal request" is empty"
You can get rid of "none" by making the field mandatory AND setting a default value for it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @christophe demez ,
welcome to the Atlassian community!
First of all, if you defined that field required through the Field Configuration and put No/Yes as default value, None option should be not visible on creation/Edit.
Btw,"Is Internal Request" is Empty -> Should retrieve all issues with None value
Hope this helps,
Fabio
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.