Community Halloween is live until October 31st! Complete any 2 quick activities to earn the 2025 Community Halloween badge. Feeling brave? Check out the activities here
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