Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Guys,
I need to remove zeros from the left of the string '000005674505'.
I want to have in results:'5674505'.
Can you help me please?
thank you .
The method is to format the string as a number using NUM()
NUM(000005674505,'#,##0')
If the formatting is not required, then no need to have the second parameter.
You could use the IsNum() function.
IF(IsNum(VALUE),
NUM(VALUE,'#,##0'),
VALUE)
The method is to format the string as a number using NUM()
NUM(000005674505,'#,##0')
If the formatting is not required, then no need to have the second parameter.
thank you for the solution. the real problem is that i have some rows where the information is like 000005674505 and others like 'GH54673045'. I don't know if there is a way to say if it is numeric then NUM(000005674505,'#,##0') ?
You could use the IsNum() function.
IF(IsNum(VALUE),
NUM(VALUE,'#,##0'),
VALUE)
Hi!
For me what works is num(num#(some_number,'#0') ).
Converts '000005555' to 5555.