Hello,
I am trying to clean out a dataset whereby I want to remove zeros (0) at the beginning of my account numbers and only remain with the remaining digits. My dataset can be seen below:
For example if I have 02334566, the new column I want to create should have 2334566 for the new account number. How can I achieve this in alteryx?
Solved! Go to Solution.
ReplaceFirst([Account Number], "0" , "")
ReplaceFirst([Account Number],”0”,””)
Or you could convert it into a number which would remove the zeroes automatically - not my suggestion but a possibility nonetheless.
Another way to do it:
Right([Account Number], Length([Account Number])-1)
Thank you so much. This works