How do i add a second parent link to a query?

Marvo Barker February 3, 2023

Morning all, I have the below query which works and shows me everything that had a target end before 2023 for ID-46. How would i add another parent link to the below to include  ID-58 as well as ID-46?

 

"Parent Link" = ID-46 AND "Target end" < endOfYear()

 

Any help would be appreciated :)

1 answer

1 accepted

2 votes
Answer accepted
Jack Brickey
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
February 3, 2023

Hi @Marvo Barker , can you try the following? Please note that this is an "OR" function not an "AND". which makes sense given that no issue can have two parents.

"Parent Link" in (ID-46, ID-58) AND "Target end" < endOfYear()

Marvo Barker February 3, 2023

Worked, thanks Jack

Suggest an answer

Log in or Sign up to answer