you just need to change the format of the date?
theres a few things you could try
open a new blank sheet:
1. change the format
- if A1 has the date 05/07/2008
- right click on A1
- click format cells...
- click custom
- in the Type box type
yyyy-mm-dd
- then you date should be formatted the way you expext it to look.
- unsure if MySQL will accept that or not...because excel stores dates as 5 digit numbers.
- if you copy A1
- right click on cell B1
- click paste special...
- click values
- click ok and you will see the 5 digit number is the "value"
2. the other (probably better) way is convert the date to "text"
- in A2 use the date 05/07/2008
- in B2 copy&paste this formula
=TEXT(A2,"yyyy-mm-dd")
- then copy B2
- right click on C2
- click paste special...
- click values
- click ok
and you will see that the date is now text formatted to the format you want.
you might not even want to put the dashes in the quotes in the text() formula, but its your choice on how you want to see it.
hope one of these helps when you apply it to your real sheet.
with #1 above...you dont need to do anything
with #2 above you need to:
- just copy&paste the formula down the column.
- then do the paste special... over the original dates.
- then just delete the column where you put the formula