There are several different interpretations as to what "julian date" actually means. What do you mean by julian date?
Good Luck
--------------
To get the most from your Tek-Tips experience, please read FAQ181-2886 As a circle of light increases so does the circumference of darkness around it. - Albert Einstein
I'm not very familiar with date codes. How could i get
(three digit date)(last 2 digits of year)? same thing you did but with the day# 1st. I appreciate your help.
The following will return 1, 2 or 3 digit followed by 2
For example, entering my birth month and day, Jan 2nd in the form of 1/2/4 returns 204, not 00204
Format(Date(),"y") & Format(Date(), "YY")
If you need to always have 3 digits followed by 2, use:
Format(Format(#1/2/4#,"y"),"000") & Format(Date(), "YY")
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.