I have a data source which has column with mix of numbers and char and would like to strip leading zero from number value
000000123
000123002
ABC
Expected output:
123
123002
ABC
Using ToNumber() is providing the below:
123
123
Null
I can get round the Null but the 000123002 becoming 123 is a challange...any ideas?