How do I convert dates from yyyymmdd120000[0:GMT] to mm/dd/yyyy in Excel 2003?
J JDMocko Feb 6, 2007 #1 How do I convert dates from yyyymmdd120000[0:GMT] to mm/dd/yyyy in Excel 2003?
L Lori Feb 6, 2007 #2 If the date is in A1 try: =--TEXT(LEFT(A1,14),"0000-00-00 00\:00\:00") and format the result in mm/dd/yyyy date format.
If the date is in A1 try: =--TEXT(LEFT(A1,14),"0000-00-00 00\:00\:00") and format the result in mm/dd/yyyy date format.
B Bob Phillips Feb 6, 2007 #3 =DATE(LEFT(A21,4),MID(A21,5,2),MID(A21,7,2)) and format to the required date format. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy)
=DATE(LEFT(A21,4),MID(A21,5,2),MID(A21,7,2)) and format to the required date format. -- --- HTH Bob (there's no email, no snail mail, but somewhere should be gmail in my addy)
A Arun Feb 7, 2007 #5 u could try using activecell.value=format(activecell.value,mm/dd/yyyy) or as ur requirement is the normal date format u could just save the value to a variable declared as date and store it again in the destination cell regards nc
u could try using activecell.value=format(activecell.value,mm/dd/yyyy) or as ur requirement is the normal date format u could just save the value to a variable declared as date and store it again in the destination cell regards nc