Start Free Trial

Alteryx Designer Desktop Discussions

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

Separate line item by first number

kauser
8 - Asteroid

Hello, 

how can we separate/remove linen item that start with serial#4 from list below - 

 

 Serial # 
565654
678976
234245
456437
487898
578678
564565
423423
786878
476879

 

Thank you 

 

kauser 

1 REPLY 1
CoG
14 - Magnetar

Filter Tool:

 

Left(ToString([Serial # ]),1) != "4"

 

^Assumed we are working with numerical data type. Thus, first convert to string, take the first character and confirm that it is not "4".

 

Happy Solving!

Labels
Top Solution Authors