up vote 0 down vote favorite
share [g+] share [fb]

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

link|improve this question

70% accept rate
feedback

5 Answers

up vote 5 down vote accepted

=TEXT(A1,"0000000000")

link|improve this answer
The disadvantage of this method is that the number itself can no longer be used in other formulae. – Mark Pattison Mar 12 '09 at 16:11
Sure it can, just use VALUE(A1) instead of A1 in the other formulas. – Tmdean Mar 12 '09 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 '09 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 '09 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 '09 at 21:23
show 1 more comment
feedback

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|improve this answer
feedback

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

link|improve this answer
I don't see a 'Special' option under Number in Excel 2003. – Lance Roberts Mar 12 '09 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 '09 at 16:22
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.

=REPT("0",10-LEN(A1))&A1
link|improve this answer
feedback

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|improve this answer
right("0000000000"&number,10) works poorly for negative numbers. – Liudvikas Bukys Mar 12 '09 at 16:25
feedback

Your Answer

 
or
required, but never shown

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