Hi I have a table, one date field is in the julienne date format "39656" how
can I convert this field to short date?
The term "Julian date" (named after Julius Caesar) has various definitions,
but usually would refer to either the Astronomical Julian Date, the number of
days since January 1, 4713 BCE Greenwich noon; or a shorthand date consisting
of the (two or four digit) year number and days in the year, e.g. 11/13/2009
would be either 09316 or 2009316.
Since neither 1939 nor 2039 have a 656th day, and since 39656 would be in the
fourth millenium BCE on the Astronmical Julian Date scheme, I'm doubtful that
either is relevant for your example.
Where are you getting this finely shredded date number? Might it be from
Excel? If so the starting point is December 30, 1899 and you could use
DateAdd("d", #12/30/1899#, [juliennedate])
but do check to see if that agrees with your other information, since the
definition of your date field is ambiguous!