Excel Number Formatting

  • Thread starter Thread starter Caz
  • Start date Start date
C

Caz

Hi please help us..

We want to convert a number that starts with 0001 to text, but when we do
this it loses the 0's how can we do this without going down 70000 lines and
typing in the 0. Its hurting my head!
 
A number of options, including:
Format the cells as text before you type the numbers in, or
Type an apostrophe at the beginning of the number to tell Excel to treat it
as text, or
Format the cell as 000000 if you want to display the number as 6 digits, for
example, or
=TEXT(A2,"000000") if you want to convert the number to text with 6 digits,
or
="000"&A2 if you want a text string which starts with 000 and then continues
with your existing number.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top