Julian Date

  • Thread starter Thread starter MaryV
  • Start date Start date
M

MaryV

Can someone please tell me how I can convert a Julian date that read
(example):

32803 meaning the 328th day of the year 2003 to what should b
11/24/03

Thanks in advance.....
 

You only show a two digit year, so the actual year is ambiguous. If the year
must be in the 21st century, then:

=DATE(2000+MOD(G1/100,1)*100,1,INT(G1/100))

If your two digit years go from 1930 to 2029, then:

=DATE(1900+MOD(G1/100,1)*100+100*(MOD(G1/100,1)<0.03),1,INT(G1/100))


--ron
 

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