convert Julian date

D

Doug

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
 
R

Ron Coderre

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?
 
R

Ron

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