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 one and two series only

SH_94
11 - Bolide

Dear community,

 

I would like to ask how can we filter for the following numbers so that the result will be as follow:

Criteria - Filtering only the number start with 1 and 2 only from the input below.

 

SH_94_0-1643351673214.png

Thank you and hope to hear from you soon.

 

 

1 REPLY 1
atcodedog05
22 - Nova
22 - Nova

Hi @SH_94 

 

use formula like below in filter tool.

 

 

StartsWith([Field3], "1") OR
StartsWith([Field3], "2")

 

 

Workflow:

atcodedog05_0-1643352049759.png

 

Hope this helps : )

Labels
Top Solution Authors