Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

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

remove rows with a specific character

adamvallelunga
5 - Atom

Hi,

 

New to Alteryx...was wondering if there is a way to remove rows, that their 2nd to last character is zero(0)?

Would it be within the regular filter query. Thanks, Adam

 

clipboard_image_0.png

3 REPLIES 3
Thableaus
17 - Castor
17 - Castor

Hi @adamvallelunga 

 

You could use a Filter tool with something like this:

 

Left(Right(ToString([ACCOUNTID]), 2), 1) != "0"

 

 

 

Cheers,

 

 

JosephSerpis
17 - Castor
17 - Castor

Hi @adamvallelunga if you use this syntax should work IF Substring([AccountID],7,1) ="0" THEN "Remove" ELSE "Keep" ENDIF

 

Remove_Row_270819.PNG

adamvallelunga
5 - Atom

Thanks

 

Labels