How do I convert 02/11/09 to 021109? Thanks
J Jim Thomlinson Feb 11, 2009 #2 Two possibles... Just add a custom format. Right click the date and select Format Cells -> Number tab -> Custom and change the format to ddmmyy Or use the formula =text(a1, "ddmmyy") where your date is in A1.
Two possibles... Just add a custom format. Right click the date and select Format Cells -> Number tab -> Custom and change the format to ddmmyy Or use the formula =text(a1, "ddmmyy") where your date is in A1.
S Sheeloo Feb 11, 2009 #4 =TEXT("02/11/09","mmddyyyy") If the date is in A1 then use this in any other cell =Text(a1,"mmddyyyy")
=TEXT("02/11/09","mmddyyyy") If the date is in A1 then use this in any other cell =Text(a1,"mmddyyyy")
M MartinW Feb 11, 2009 #5 Hi, Take a look here at Chip Pearson's site http://www.cpearson.com/excel/jdates.htm I think that should do what you want. HTH Martin
Hi, Take a look here at Chip Pearson's site http://www.cpearson.com/excel/jdates.htm I think that should do what you want. HTH Martin
D David Biddulph Feb 11, 2009 #6 No, Martin. That page is about Julian dates, which wasn't what the OP asked for.