Allen/Tom, Both of these produce the result I am looking for. Now I'm going to try to figure out
how they work. Thanks for your time!!!!
> Is a Julian date the year concatenated with 3 digits representing the day of the year?
>
[quoted text clipped - 8 lines]
>> If you know of a solution or somewhere I can find the answer I would appreciate it. Thanks for
>> your time!
I wouldn't worry about figuring out why Tom's worked. It's not a generic
solution: it will not work for dates in 2003 or 2005, for instance.
?DateAdd("d", 3023, #1/17/1993#)
2001-04-28
?DateAdd("d", 5023, #1/17/1993#)
2006-10-19
On the other hand, Allen's works because it adds the number of days to the
last day of the previous year. Right(string, 3) gives you the last 3
characters of a string, while DateSerial(year, 1, 0), it gives you the last
day of the previous year.
?DateAdd("d", Right("3023", 3), DateSerial(Left("3023", Len("3023")-3), 1,
0))
2003-01-23
?DateAdd("d", Right("5023", 3), DateSerial(Left("5023", Len("5023")-3), 1,
0))
2005-01-23

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> Allen/Tom, Both of these produce the result I am looking for. Now I'm going to try to figure out
> how they work. Thanks for your time!!!!
[quoted text clipped - 11 lines]
> >> If you know of a solution or somewhere I can find the answer I would appreciate it. Thanks for
> >> your time!
Tom van Stiphout - 18 Sep 2004 15:59 GMT
The OP spoke about julian days.
I just pointed out how they work. But I'm with everyone else:
1/17/1993 is a very curious begin date, and for me points out that it
is NOT a julian date. I was hoping the OP would come to that
conclusion himself.
-Tom.
>I wouldn't worry about figuring out why Tom's worked. It's not a generic
>solution: it will not work for dates in 2003 or 2005, for instance.
[quoted text clipped - 15 lines]
>0))
>2005-01-23
Douglas J. Steele - 18 Sep 2004 18:35 GMT
To many people, Julian Date is year and day of year, so that 4023 is the
23rd day of 2004.
And yes, I know that isn't actually a Julian Date.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
> The OP spoke about julian days.
> I just pointed out how they work. But I'm with everyone else:
[quoted text clipped - 23 lines]
> >0))
> >2005-01-23
Reggie - 18 Sep 2004 21:03 GMT
Thanks again for all the help. I know that 4023 isn't a Julian date, but this is government data
coming from a main frame and this is the format I get it in so gotta live with it. Thank ya'll for
your time!

Signature
Reggie
----------
> To many people, Julian Date is year and day of year, so that 4023 is the
> 23rd day of 2004.
[quoted text clipped - 32 lines]
>> >0))
>> >2005-01-23