Link to home
Start Free TrialLog in
Avatar of roosterup
roosterup

asked on

Normalize dates in excel

I have a long column of dates that look like this:

7/1/2008
10/13/2003
11/17/2003
02/25/2002
01/01/1999
5/11/1992
9/30/2013
9/1/2011
10/1/2011

I need leading zeros in front of all the days and months in each cells. Or at least a leading zero on the days under ten. OR is there anyway to convert all these dates into this format YYYYMMDD?
ASKER CERTIFIED SOLUTION
Avatar of Professor J
Professor J

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
Avatar of Professor J
Professor J

also you could do this another way

=TEXT(A1,"mm/dd/yyyy")
ProfessorJimJam's solution but refined:
=TEXT(A1, "MM-DD-YYYY")