hyphenated number format with leading zeros to the right of the hy
From your example I assume the numbers are of the form:
5 digits -000 1 digit
if the user just types in 123451 and the next cell has the formula:
=LEFT(A1,5)&"-000"&RIGHT(A1,1)
then it will display 12345-0001
just as you want.
_____________________________________
Gary's Student
"CJ" wrote:
I need to achieve a result like this: 12345-0001
However, the user does not want to type the leading zeros.
Help would be much appreciated!!!
|