How do I create a reverse julian date formula?

  • Thread starter Thread starter Guest
  • Start date Start date
Example - input number 05343
Output from formula 12/9/2005

Here's one way:

If your years will always be in this century:

=DATE(LEFT(TEXT(A1,"\2\000000"),4),1,RIGHT(A1,3))

If it can be this century or last, with "30" being in the last century, then:

=DATE(IF(--LEFT(TEXT(A1,"00000"),2)>30,1900,2000)
+LEFT(TEXT(A1,"00000"),2),1,RIGHT(A1,3))


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