Hi All,
I will describe shortly the situation and outcome i need to have.
I`ve created multiple quick filters which reflect the label. Label reflects the geographical region.
So as per above i have labels WestEU and Indocina(for example) and created for them filters ( filter called EU shows all issues with Label EU, and with Indochina is the same logic).
There are as well other labels with filters as per above example ( East EU, North ASIA, Central EU) etc.
When i click on filet West EU and Indochina i have no issues visible ( as far as i understood unless issue will have 2 these labels in the same time).
What i want to do is out from all issues and labels i want to see only issues for WestEU and Indochina.
How can i do it?
Please advise,
In the search bar, you can write a JQL query to filter issues based on your requirements. Given your need, you can use the OR operator in your query.
Your JQL query should look something like this:
labels = WestEU OR labels = Indochina
=> This query will return all issues that have either the "WestEU" label or the "Indochina" label.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.