View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default convert Julian Date Format to Excel

Assuming the data is is text format:

=--LEFT(A1,FIND(" ",A1,1))--RIGHT(A1,LEN(A1)-FIND(" ",A1,1))
and format as Custom mm/dd/yyyy hh:mm:ss
--
Gary''s Student - gsnu200765


"Pablo" wrote:

Dear Reader,

I have a data download that gives back a date field in Julian format. It's
in the following format:

Create TS
2007/12/13 19:44:10

How can I convert this date format into a usable Date format? I can live
with just the 12/13/2007 date format, but would like date + time.

Thanks,

Pablo