Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 19:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×Hi Guys,
Just wondering if anyone else has encountered this and found a work around .....
My JQL query for a board reads as the below, the board is unable to see "Projects in board" when the cascade option for the JQL query is empty. I have highlighted the part in bold I need to remove in order for the board to see the projects in the board.
project = "First Responder Inbox" AND "Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network",none) OR "Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network", "Merchant Engagement")
Appreciate any help on this! Thanks!
Jack
Hi Guys,
Thanks for all the responses, I think I found a fix for this (not sure why this works tho)
Turns out specifically specifying the project again after the first part of the filter allows the filter to pick up the project, I changed the filter to the below and it now works.
project = "PDFR" AND ("Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network",none)) OR project = "PDFR" AND ("Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network", "Merchant Engagement")) ORDER BY created DESC
Hi @Jack Tucker
I don't know what you're trying to achieve with the filter but could it be that the JQL needs to be:
project = "First Responder Inbox" AND ("Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network",none) OR "Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network", "Merchant Engagement"))
This will give you issues from project First Responder Inbox where the Group Assignment is one of the options provided (within that project only).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Dave,
Thanks for your reply, I am trying to get the filter to show issues where the option is Bank Payment Network and the cascading option is Merchant Engagement, but also when the first option Bank Payment Network is selected and the cascading option is empty.
When I have this part in the filter it is unable to see the project:
("Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network",none)
Many Thanks
Jack
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jack Tucker
I might have found the issue in the JQL.
The cascade option none has to be specified with quotes as well and to keep the OR clause in the project First Responder Inbox, also include this clause in ()
Can you try the JQL?
project = "First Responder Inbox" AND ("Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network","none") OR "Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network", "Merchant Engagement"))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That will only work if there is a "none" option in the field.
Experienced Jira admins will never add "none" as an option.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Nic Brough -Adaptavist- saw your reply to my question in another thread, and clicked your name to see recent activity. This question popped up, with your answer highlighted... And it caught my attention, because I was literally in the middle of adding the text "None" to some custom fields I had made. Will you please explain why this should never be done?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So the simple human answer is "because it is a confusing lie".
If you add "none" as an option to a select list, then it is lying when people see issues with that value. "None" as an option is a value, so it's telling people the wrong thing.
The key thing here an understanding the difference between an empty field and one with data in it. Humans don't handle blank data very well, so most systems display something like "none" when the field is actually empty.
The problem with adding "none" as an option is that it's
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Isaac Van Baren FYI
I check ad it does work.
None is on a single, multi or cascading the default option that is on the field if not mandatory or a default set. (I know you are aware of this).
If you JQL on "Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network")
You will get all issues with option Bank Payment Network where the second option of the cascading field is empty or has a value.
JQL :"Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network","none")
You will get all issues with option Bank Payment Network where the second option of the cascading field is empty.
Or JQL: Group Assignment[Select List (cascading)]" in cascadeOption("Bank Payment Network", "Merchant Engagement")
You will get all issues with option Bank Payment Network where the second option of the cascading field is Merchant Engagement.
Example (tested both DC and Cloud), no option None is defined, the the cascading select:
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.