convert Julian date

G

Guest

I would like to know if there is a function to convert a Julian date (04365)
to a regular date (31 Jan 04). If so, please post! Thank You

Doug
 
G

Guest

Try pointing this formula at your Julian Date:
I used Cell A1:
=DATE(1999+QUOTIENT(A1,1000),12,31)+MOD(A1,1000)

Does that help?
 
G

Guest

I used the following to convert JD:
=DATE(INT(B5/1000),1,MOD(B5,1000) with first cell of data being B5.
 

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

Top