We are celebrating the 10-year anniversary of the Alteryx Community! Learn more and join in on the fun here.
Start Free Trial

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Filter

bh1789
8 - Asteroid

I am trying to filter 2 columns, Monitoring and Year, but it is not working ... any suggestions?  Thank you

 

[Monitoring] = "Email" AND Contains([Year], "2023") OR
[Monitoring] = "Email" AND Contains ([Year], "2022") OR
[Monitoring] = "Email" AND Contains ([Year], "2024")

1 REPLY 1
Qiu
21 - Polaris
21 - Polaris

@bh1789 
Try something as below.
We need to group the conditional statements

([Monitoring] = "Email" AND Contains([Year], "2023")) OR
([Monitoring] = "Email" AND Contains ([Year], "2022")) OR
([Monitoring] = "Email" AND Contains ([Year], "2024"))

or 

[Monitoring] = "Email" AND 
(Contains([Year], "2023") OR Contains ([Year], "2022") OR Contains ([Year], "2024"))

 

Labels
Top Solution Authors