Saving to CSV in Excel loses regional date format

127,360

Solution 1

Although keeping this in mind http://xkcd.com/1179/

In the end I decided to use the format YYYYMMDD in all CSV files, which doesn't convert to date in Excel, but can be read by all our applications correctly.

Solution 2

You can save your desired date format from Excel to .csv by following this procedure, hopefully an excel guru can refine further and reduce the number of steps:

  1. Create a new column DATE_TMP and set it equal to the =TEXT( oldcolumn, "date-format-arg" ) formula.

For example, in your example if your dates were in column A the value in row 1 for this new column would be:

=TEXT( A1, "dd/mm/yyyy" )

  1. Insert a blank column DATE_NEW next to your existing date column.

  2. Paste the contents of DATE_TMP into DATE_NEW using the "paste as value" option.

  3. Remove DATE_TMP and your existing date column, rename DATE_NEW to your old date column.

  4. Save as csv.

Solution 3

Change the date and time settings for your computer in the "short date" format under calendar settings. This will change the format for everything yyyy-mm-dd or however you want it to display; but remember it will look like that even for files saved on your computer.

At least it works.

Solution 4

You need to do a lot more work than 1. click export 2. Open file.

I think that when the Excel CSV documentation talks about OS and regional settings being interpreted, that means that Excel will do that when it opens the file (which is in their "special" csv format). See this article, "Excel formatting and features are not transferred to other file formats"

Also, Excel is actually storing a number, and converting to a date string only for display. When it exports to CSV, it is converting it to a different date string. If you want that date string to be non-default, you will need to convert your Excel cells to strings before performing your export.

Alternately, you could convert your dates to the number value that Excel is saving. Since that is a time code, it actually will obey OS and regional settings, assuming you import it properly. Notepad will only show you the 10-digit number, though.

Solution 5

If you use a Custom format, rather than one of the pre-selected Date formats, the export to CSV will keep your selected format. Otherwise it defaults back to the US format

Share:
127,360
upshake
Author by

upshake

Updated on June 27, 2020

Comments

  • upshake
    upshake almost 4 years

    I have a .xls I need to convert to .csv

    The file contains some date columns. The format on the date is "*14/03/2001" which, according to Excel means the date responds to regional date and time settings specified for the OS.

    Opening in Excel you see:

    20/01/2013
    01/05/2013
    

    Save as... CSV

    Open in notepad:

    01/20/2013
    05/01/2013
    

    I have temporarily fixed by setting date formats to "14/03/2001" (no *) but even some other custom formats with no *, like "d/mm/yyyy h:mm" get mangled when saved to CSV.

  • Liam Laverty
    Liam Laverty almost 9 years
    I cannot believe that this is the solution to this problem. Thanks
  • Chris SH
    Chris SH over 8 years
    I don't see "Calendar Settings" in Windows 7.
  • Pawel
    Pawel over 7 years
    This didn't work for me. Changed format to YYYY-MM-DD and the column type Text but on reopening it still appears as DD/MM/YYYY.
  • deadcode
    deadcode over 7 years
    @Pawel - the question was how to get Excel to save a particular date format, not how to prevent it from messing up the date format each time it opens. The approach above does not prevent Excel from messing up the date each time it reopens, but it at least allows you to save it.
  • Pawel
    Pawel over 7 years
    You're right, my bad. I checked it in a text editor and the values are converted correctly.
  • unu
    unu over 7 years
    Confirmed that this works. Open the .csv file in notepad after you safe it to confirm you see the expected date formatting. Opening the .cvs file in Excel after you save it will format the date using the default US format.
  • FreeText
    FreeText about 6 years
    It's worth noting that the date will then be delimited by double-quotation marks, e.g. "May 10, 1960".
  • FreeText
    FreeText about 6 years
    ...in the CSV file.
  • Eoin
    Eoin over 3 years
    This is what I'm trying to achieve. The CSV keeps changing it back the other way around