Date format

  • Thread starter Thread starter lo032398
  • Start date Start date
L

lo032398

I am trying to create a chart with a time series using date data whic
looks like (03/24/2004 13:55:00.031)

How do I convert this to an Excel date without a lot of characte
manipulation. When I try to DATEVALUE the data it gives me #VALU
 
You can format all the cells that have this in them as
Custom: dd/mm/yyyy this will drop the time displayed in the
cell but it will still be part of the data in the formula bar.
HTH
Kevin M
 
<without a lot of character manipulation> Sorry, no easy way (grin). Tr
this :-

=DATEVALUE(MID(A1,4,2) &"/" &LEFT(A1,2) &"/" & MID(A1,7,4)
+TIMEVALUE(MID(A1,12,2) &":" &MID(A1,15,2) &":" &MID(A1,18,2)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Help differentiating numbers and dates 3
how to return a date 2
Text to Date 8
Formulas and Dates not working in compatibility mode 2
vlookup using date 5
Blank Lines Question 2
DATE FORMULA 3
SUMPRODUCT 1

Back
Top