Hi I have a data here that I want to trim down the leading zeros in the left side:
Code: Expected Code:
000 0
002 2
023 23
016 16
Can you help meout with this one pls?
You can use ToNumber([Code:]) to trim all not-required zeros.
Workflow:
Hope this helps : )
this article goes through this:
TL;DR: use TrimLeft to remove '0' from the left of your fields.