What syntax do you use to filter two projects?

Tiffany Vredeveld April 26, 2016

I'm trying to create a filter that shows me only two projects. What is the syntax i can use to show both? Afterwards i want to filter out certain stages of the workflow. But there are 2 issues in a filtered out stage that i want to view so would i Label them with the same label?

4 answers

1 accepted

1 vote
Answer accepted
Doug Swartz
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 26, 2016

Project in (project1,project2) AND (status in (stat1,stat2) or labels = "capacity")

0 votes
Nic Brough -Adaptavist-
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 26, 2016

Project in (project1,project2) AND  ( status in (stat1,stat2) OR label = capacity )

0 votes
Tiffany Vredeveld April 26, 2016

That worked, thank you! What do I add in to show some issues that are labeled something such as "capacity" but are in a status i have filtered out?

0 votes
Deleted user April 26, 2016

Try something like this;

Project in (project1,project2)

To extend it to select only certain status;

Project in (project1,project2) AND status in (stat1,stat2)

List which ever projects and statuses you want in the parentheses.

Suggest an answer

Log in or Sign up to answer