vote up 0 vote down star

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).

flag

52% accept rate

4 Answers

vote up 4 vote down check

=TEXT(A1,"0000000000")

link|flag
The disadvantage of this method is that the number itself can no longer be used in other formulae. – Mark Pattison Mar 12 at 16:11
Sure it can, just use VALUE(A1) instead of A1 in the other formulas. – Tmdean Mar 12 at 18:07
True, but it then means you have to change all cells refering to A1. Much easier to use mavnn's answer below, to be honest. – Mark Pattison Mar 17 at 11:48
Depends what you want: I've seen a lot of people get very confused when formatting disguises the actual value in a cell (which is what my solution does, in effect). I actually marked up Alison's solution as ihmo it's more useful in more situations that simply changing the format. – mavnn Mar 18 at 11:35
I've just gotten in the habit of always using VALUE when I want a number since it's shockingly common to get a spreadsheet that has a number formatted as text on row 4934 and there's no way to be able to tell without examining every cell your formula applies to. – Tmdean Mar 18 at 21:23
show 1 more comment
vote up 3 vote down

Not a programming question, really:

  1. Select cells you want formatted in this way.
  2. Right click and select "Format Cells..."
  3. Select the "Number" Tag, and scroll down to "Custom" in the category list.
  4. Type "0000000000" into the Type field.
link|flag
vote up 0 vote down

Something like the following.

right( "0000000000" & number, 10 )

Put 10 zeroes on the left, take the right-most 10 positions, whatever they turn out to be.

Also, you have

text( number, "0000000000" )
link|flag
right("0000000000"&number,10) works poorly for negative numbers. – Liudvikas Bukys Mar 12 at 16:25
vote up 3 vote down

Format>Cells...>Number>Custom>Type>0000000000

link|flag
I don't see a 'Special' option under Number in Excel 2003. – Lance Roberts Mar 12 at 15:54
Fixed the typo. I meant 'Custom', not 'Special'. Though in my copy of Excel 2003, both are present. – Liudvikas Bukys Mar 12 at 16:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.