Hi folks,
I've done some pre-work cleaning data as it comes in via query, though there are outliers that I don't want to continue to accommodate via SQL. I'd rather do any additional cleansing/normalization of the data using the Alteryx tools, if possible.
When certain text shows up in a field, I need it removed....THEN normalize what is left over into a consistent format, with leading zeros.
I believe data can be removed via: REPLACECHAR(REPLACECHAR([Yourfield],'"',''),"'","")
Pending that works, how would I have the tool (or another in a following step) analyze and append needed leading zeros.
Any help is appreciated. Thanks!
.: Mike
| INPUT | DESIRED OUTPUT |
| ABC1234 | 001234 |
| 123456 | 123456 |
| QWER12345 | 012345 |
| POI 012345 | 012345 |