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
Solved! Go to Solution.
You could use a Filter tool with something like this:
Left(Right(ToString([ACCOUNTID]), 2), 1) != "0"
Cheers,
Hi @adamvallelunga if you use this syntax should work IF Substring([AccountID],7,1) ="0" THEN "Remove" ELSE "Keep" ENDIF
Thanks Thableaus, it works; much appreciated!
Adam