vote up 4 vote down star

I produce a report as an CSV file. When I try to open the file in Excel, it makes an assumption about the data type based on the contents of the cell, and reformats it accordingly.

For example, if the CSV file contains

...,005,...

Then Excel shows it as 5. Is there a way to override this and display 005?

I would prefer to do something to the file itself, so that the user could just double-click on the CSV file to open it.

I use Excel 2003.

flag

75% accept rate

6 Answers

vote up 11 vote down check

There isn’t an easy way to control the formatting Excel applies when opening a .csv file. However listed below are three approaches that might help.

My preference is the first option.

Option 1 – Change the data in the file

You could change the data in the .csv file as follows ...,=”005”,... This will be displayed in Excel as ...,005,...

Excel will have kept the data as a formula, but copying the column and using paste special values will get rid of the formula but retain the formatting

Option 2 – Format the data

If it is simply a format issue and all your data in that column has a three digits length. Then open the data in Excel and then format the column containing the data with this custom format 000

Option 3 – Change the file extension to .dif (Data interchange format)

Change the file extension and use the file import wizard to control the formats. Files with a .dif extension are automatically opened by Excel when double clicked on.

Step by step:

  • Change the file extension from .csv to .dif
  • Double click on the file to open it in Excel.
  • The 'File Import Wizard' will be launched.
  • Set the 'File type' to 'Delimited' and click on the 'Next' button.
  • Under Delimiters, tick 'Comma' and click on the 'Next' button.
  • Click on each column of your data that is displayed and select a 'Column data format'. The column with the value '005' should be formatted as 'Text'.
  • Click on the finish button, the file will be opened by Excel with the formats that you have specified.
link|flag
1  
.dif didn't work on my machine; manually opening with Excel 2007 didn't work (warned me that the file type was different than the extension) and it looks like .DIF is associated with Quicktime on a lot of computers. Just FYI :) Otherwise, great tips! – Nicholas H Oct 30 '08 at 18:55
i think option 1 is the best, if you want a hassle-free way to generate a file that "just works"--i.e. it opens on the user's computer in excel without requiring them to do any additional work. – Kip Aug 13 at 13:53
I've got the same issue, and none of the above are appropriate sorry. THinking I might export as XML and use XSLT to go to CSV. I need the CSV file to be correct so that it can be imported into another application – Matthew Hook Nov 18 at 0:23
vote up 3 vote down

You can simply format your range as Text.

Also here is a nice article on the number formats and how you can program them.

link|flag
vote up 2 vote down

Don't use CSV, use SYLK.
http://en.wikipedia.org/wiki/SYmbolic_LinK_(SYLK)

It gives much more control over formatting, and Excel won't try to guess the type of a field by examining the contents. It looks a bit complicated, but you can get away with using a very small subset.

link|flag
vote up 1 vote down

I believe when you import the file you can select the Column Type. Make it Text instead of Number. I don't have a copy in front of me at the moment to check though.

link|flag
vote up 1 vote down

Actually I discovered that, at least starting with Office 2003, you can save an Excel spreadsheet as an XML file. Thus, I can produce an XML file and when I double-click on it, it'll be opened in Excel. It provides the same level of control as SYLK, but XML syntax is more intuitive.

link|flag
vote up 0 vote down

When opening a CSV, you get the text import wizard. At the last step of the wizard, you should be able to import the specific column as text, thereby retaining the '00' prefix. After that you can then format the cell any way that you want.

I tried with with Excel 2007 and it appeared to work.

link|flag
1  
Excel 2003 doesn't pop up the wizard. – Sergey Stadnik Sep 26 '08 at 2:32

Your Answer

Get an OpenID
or

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