You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Can you help me to make a filter that shows issues from two different projects?
Try this approach:
(project = FOO and issuetype not in ("Test", "Test Execution"))
or
(project = BAR and status != "In progress")
You get the idea?
Wrap a project key and the additional conditions in that project in parentheses, and connect them with OR. It is trivial.
Hi @Ester Cerveró
Welcome to the community!
You may try the following query:
Project in (Project1, Project2)
Regards.
Sushant Verma
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Sushant, within each project I have to include more filters like issue type or states that are different in each project.
for example one query like this plus another one from another project
project = PV AND issuetype not in (Test, "Test Execution", "Test Plan", "Test Set", "Sub Test Execution")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Ester Cerveró You can create the filter like below :
(project = XYZ AND issuetype not in ("Test", "Test Execution, "Test Plan"
or
(project = ABC and status != "In progress")
Regards,
Sushant Verma
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.