project = REQUERIMIENTOS AND ((reporter not in membersOf("BAR-IT")) OR (reporter not in membersOf("BAR-IT-FYO")))

Diego Cañete September 12, 2016

I want do report for proyect name "Requerimientos" and filter conditions the reporter not in member of two o three groups, but is not working antil momet .-

Could you help me?

1 answer

0 votes
mlassau_atlassian
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.
September 12, 2016

If I understand what you want then you need to change the OR to an AND:

project = REQUERIMIENTOS AND
((reporter not in membersOf("BAR-IT")) AND (reporter not in membersOf("BAR-IT-FYO")))

... but you don't need all those brackets either:

project = REQUERIMIENTOS AND reporter not in membersOf("BAR-IT") AND reporter not in membersOf("BAR-IT-FYO")

smile

 

Suggest an answer

Log in or Sign up to answer