Let’s talk Alteryx Copilot. Join the live AMA event to connect with the Alteryx team, ask questions, and hear how others are exploring what Copilot can do. Have Copilot questions? Ask here!
Start Free Trial

Alteryx Designer Desktop Discussions

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

Tracing the first number in an alphanumeric code.

Satyaki04
7 - Meteor

I have records with string as data type. I would need to find out cases where the record starts with "0". 

I want to use Custom Filter to track this. Thanks for your assistance.

4 REPLIES 4
ganesamurthy
8 - Asteroid

I doubt if you can acheive this with only Filter tool, rather I would go for a Regex tool or Formula tool, then combine with Filter tool to acheive this result.

benakesh
12 - Quasar

Hi @Satyaki04 ,

Try left function . You can use this in filter  :  left([field],1) = '0'  

Satyaki04
7 - Meteor

Thanks for guiding me.

 

I have proceeded as below:

 

left([WBS NUMBER],1)!="0"

 

This has helped me to group cases starting with "0" under false category.

Satyaki04
7 - Meteor

Thanks for guiding me.

 

I have proceeded as below. 

left([WBS NUMBER],1)!="0"

 

This has helped me to group all cases under False which start with "0".

Labels
Top Solution Authors