How do you zero fill a number to 10 positions inside an excel spreadsheet?
i.e. If cell A1 has 1234 how can cell A2 display 0000001234 (10 postions).
|
|
How do you zero fill a number to 10 positions inside an excel spreadsheet? i.e. If cell A1 has 1234 how can cell A2 display 0000001234 (10 postions).
|
|||
|
|
|
|
=TEXT(A1,"0000000000") |
||||||||||
|
|
|
Not a programming question, really:
|
||
|
|
|
|
Something like the following.
Put 10 zeroes on the left, take the right-most 10 positions, whatever they turn out to be. Also, you have
|
||
|
|
|
Format>Cells...>Number>Custom>Type>0000000000 |
||||
|