Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Jira Rich Text Filters

Ryan Beffa March 8, 2023

I'm trying to create the following rich text filter to exclude 3 Scrum Teams from our project view.  When i search these filters individually I'm able to exclude Scrum individually. However when I try to combine the searches as shown below, it doesn't work. It pulls in all the scrum teams with open bugs.

 

project = "R3 WFM - Infor" AND issuetype = Bug AND "Scrum Team" != "4 Remaining CBA" AND "Phase Found In" = "Integrated Systems Test (IST)" OR project = "R3 WFM - Infor" AND issuetype = Bug AND "Scrum Team" != "WFM Technical Thing 1" AND "Phase Found In" = "Integrated Systems Test (IST)" OR project = "R3 WFM - Infor" AND issuetype = Bug AND "Scrum Team" != "WFM Technical Thing 2" AND "Phase Found In" = "Integrated Systems Test (IST)"

1 answer

1 accepted

2 votes
Answer accepted
Hitesh
Contributor
March 8, 2023

Hello Ryan,

 

Try this JQL and let me know if this works for your case.

project = "R3 WFM - Infor" AND issuetype = Bug AND (
"Scrum Team" != "4 Remaining CBA" OR
"Scrum Team" != "WFM Technical Thing 1" OR
"Scrum Team" != "WFM Technical Thing 2"
) AND "Phase Found In" = "Integrated Systems Test (IST)"

 

Regards,

Hitesh.

Ryan Beffa March 8, 2023

Rich Text Filter 030823.png

Ryan Beffa March 8, 2023

Hi Hitesh, that didn't work, it is still pulling in the teams that I'm trying to exclude. Please see above screen shot.

Hitesh
Contributor
March 8, 2023

Good to know.

Ryan Beffa March 8, 2023

I can get it to work when I don't include more than 1 scrum team, but I need to exclude the 3 scrum teams in one filter if possible.

Example of 1 Scrum Team

project = "R3 WFM - Infor" AND issuetype = Bug AND "Scrum Team" != "WFM Technical Thing 1" AND "Phase Found In" = "Integrated Systems Test (IST)"

 

Rich Text Filter (One Scrum Team) 030823.png

Hitesh
Contributor
March 8, 2023

project = "R3 WFM - Infor" AND issuetype = Bug AND
(
"Scrum Team" != "4 Remaining CBA" AND "Phase Found In" = "Integrated Systems Test (IST)"
AND
"Scrum Team" != "WFM Technical Thing 1" AND "Phase Found In" = "Integrated Systems Test (IST)"
AND
"Scrum Team" != "WFM Technical Thing 2" AND "Phase Found In" = "Integrated Systems Test (IST)"
)

 

Try this and let me know.

Like Ryan Beffa likes this
Hitesh
Contributor
March 8, 2023

Or this

project = "R3 WFM - Infor" AND issuetype = Bug AND "Phase Found In" = "Integrated Systems Test (IST)" AND "Scrum Team" not in ("4 Remaining CBA", "WFM Technical Thing 1", "WFM Technical Thing 2")

Ryan Beffa March 8, 2023

Awesome.. Both of these worked. thanks for your help!!

Like Hitesh likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events