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

Filtering with multiple conditions

anamik72
8 - Asteroid

I am trying to create a filter that meets following criteria. How do I do it?

 

Filter for Field_ID value starting with 2xxxxx or 928200 or 128100. Thanks

2 REPLIES 2
AbhilashR
15 - Aurora
15 - Aurora

Hi @anamik72 , you could setup your formula to be something like:

StartsWith([Field1], '128100')
OR
StartsWith([Field1], '2xxxxx')
OR
StartsWith([Field1], '928200')
anamik72
8 - Asteroid

It worked. Thank you. I just wrote "2" instead of "2xxxxx". 

Labels
Top Solution Authors