Date Conversion yyyy-365

  • Thread starter Thread starter mhickey
  • Start date Start date
M

mhickey

I have a speadsheet where the author entered dates with the combination
of the year plus the value of the calendar day value. I.E. December 31,
2005 is reflected as 2005365. Does anyone have a suggestion how to
convert this to a basic date format like mmddyyyy?
 
Hello,

=TEXT(DATE(LEFT(A1,4),1,RIGHT(A1,LEN(A1)-4)),"MMDDYYYY")

HTH,
Bernd
 
Nel post *[email protected]* ha scritto:
I have a speadsheet where the author entered dates with the
combination of the year plus the value of the calendar day value.
I.E. December 31, 2005 is reflected as 2005365. Does anyone have a
suggestion how to convert this to a basic date format like mmddyyyy?

This format of dating is called Julian date. You can check also on line help
for that.

If you have a Julian date in C19, using the formula:

=DATE(LEFT(C19,4),1,0)+RIGHT(C19,3)

you will have a date in your standard format.

--
Hope I helped you.

Thanks in advance for your feedback.

Ciao

Franz Verga from Italy
 

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

Back
Top