I have the following Julian date 103230. does anybody know how I can change
it to a Gregorian date i.e.. 8/18/03 in a query.
thanks in advance.
"Julian Date" is a term with many, many definitions: astronomical
Julian date, yyddd Julian date, military julian date (last digit of
the year plus three digit day), and on and on. I don't recognize yours
but I'm guessing that it's years since 1900 (103) and days since the
first of the year (230).
If so, then try
DateSerial(1900 + Val(Left([JDdate], Len([JDate]) - 3)), 1,
Val(Right([JDate], 3))
I'm assuming that January 1, 1999 would be shown as 99001 - if it's
991 you're in real trouble, since 10123 could be January 23, 2001 or
the 123rd day of 1910!