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).
| ||||
|
feedback
|
|
=TEXT(A1,"0000000000") | |||||||||||
feedback
|
|
Not a programming question, really:
| |||
|
feedback
|
|
Format>Cells...>Number>Custom>Type>0000000000 | |||||
feedback
|
|
This formula is variable. It checks the length of the value and add "0" in front Now the lenght is 10. You can change it.
| ||||
|
feedback
|
|
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
| |||
feedback
|