Have a column of V String that I'm trying to isolate 4 digit number from. Some have punctuation, letters, or unnecessary zeroes.
Started with data cleanse that removed all punctuation and letters, leaving only leading zeroes.
Currently trying to use select to convert from vstring to int64 (or 32 or 16) then use formula
IF LEFT([column],2)="00"
THEN TRIMLEFT([Column],2)
ELSE **ideally do nothing, but currently "TRIMRIGHT([Column],00
ENDIF
It keeps telling me that there is a type mismatch. Number provided where a string is required.
I'm new to Alteryx and not quite sure what to do.
Thanks for the help.