Link to home
Start Free TrialLog in
Avatar of IBEW
IBEWFlag for United States of America

asked on

Force Excel Dates to ISO Format yyyy-mm-dd

I am running excel 2013 for windows. I was wondering if there was a way to force excel to format dates in ISO format automatically every time a date is entered.

To clarify, I export a csv file from a PowerSchool, which is for schools. From these csvs, I need to upload them to another site for reporting purposes. This site requires all dates to be in ISO (yyyy-mm-dd) format.

I know I can go in and manually format these cells, but sometimes there are alot of columns with these reports. In addition, every time any cell in the report is formatted incorrectly, the upload fails and you have to reformat the dates again in the csv because the changes never stick.

ANy help is appreciated.
Avatar of regmigrant
regmigrant
Flag of United Kingdom of Great Britain and Northern Ireland image

There is no way to force Excel to use a particular date format other than by creating a template, formatting the appropriate cells in a particular way and then protecting them against update.

You don't provide sufficient information to advise further and I don't know the PowerSchool application but, assuming you can't change that application to format the dates for you I would imagine you have to proceed as follows:-

1. Receive the csv file from PowerSchool
2. Load into excel to do some manipulation (including the date change)
3. save as a csv for upload to the website

Assuming these steps are correct you can modify the dates on loading into excel if, instead of double clicking the file to open it, you first open a blank excel spreadsheet and then from the Data Tab choose to import from a text file. If you follow the dialog you will see an option to import as 'date y-m-d' which you can apply to particular columns. If you save an excl spreadsheet at this point the changes will stick. You can then do a 'save as' to put the file back into CSV for upload.

if the dates are not aligned in columns you would need to do a 'find and replace' using the default date 'format' for find and the new date format for 'replace' - it may take some trial and error to get the correct format unless the incoming data is 'clean'.

Once the formats have been changed then again save in excel format to make them 'stick' and save as csv for upload.

If this is a regular occurrence then I suggest it would be better to have a macro that reads the incoming file, does the changes and spits out a file ready for upload and saves an excel copy.

Reg
ASKER CERTIFIED SOLUTION
Avatar of Rgonzo1971
Rgonzo1971

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Does this formula work for you...?
=YEAR(C9)&"-"&MONTH(C9)&"-"&DAY(C9)

however, for months and days less than 10, you may lose the 2 digit format that you need...
Or:

=TEXT(C9,"yyyy-mm-dd")