Julian Date

  • Thread starter Luis Felipe Alcantara
  • Start date
L

Luis Felipe Alcantara

Hi,

How change a julian date to "normal" date ?

Tks advance,
Luis Felipe
 
G

Guest

Try this:

For a Julian date in A1.
Example: A1: 06127

B1: =("1/1/"&LEFT(A1,2))+RIGHT(A1,3)-1
In that example, B1 returns 38844 (May 7th, 2006)

Note: Excel will engage it's default year logic in that formula to determine
which century is used. 1900's vs 2000's

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro
 
G

Guest

One more thing:
If your Julian dates are numeric, Excel removes the leading zero.

06127 would become 6127

You can correct for that situation with this formula:

B1: =("1/1/"&INT(A1/1000))+RIGHT(A1,3)-1

***********
Regards,
Ron

XL2002, WinXP-Pro
 

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