How can see data as-is ('0123' and not '123') when open excel file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I open a csv file in excel any preceding '0' will disapear. How can I
see the data exactly as it is in the csv\text file? (e.g. if my data contain
telephone numbers with area code that has preceding '0' it will be removed).
 
Hi,

CVS file doesn't inlcude information about formatting. So eventhough if you
change the cell formatting to text and enter e.g. 000555555 the leading zeros
will be lost. The workaround is to write the phone no. maybe like this (000)
555-555 or enter some char before the zeros.
 
Change the file name of the csv file from xyz.csv to xyz.txt. When you
open this in Excel it should fire off the text import wizard, in one of
the 3 stages you can define the column types, for your column with text
that has leading zero, define the column type as text and this should
solve your problem.
 
Rename your .csv file to .txt.

Then when you open the .txt file, you'll get the import wizard where you can
specify the format of each field--including Text for this field.
 
You can solve this problem if you type a character ' in front of zero i. e.
'0123 shovs 0123

"HarCo" je napisal:
 

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