Bring your best ideas to the AI Use Case Contest! Enter to win 40 hours of expert engineering support and bring your vision to life using the powerful combination of Alteryx + AI. Learn more now, or go straight to the submission form.
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