Julian Date... what is your format? If I recall correctly from my Marine Corps Days, we used the format 02-217. If you are using that format try this (and you should be able to modiy it as necessary... or give me more specifics and I'll work with you...
You can call this function in a query... assume that you have a field JulianDate, you would enter the following in the QBE grid:
Field:
ConvertedDate: JulianToStandard(cstr(JulianDate))
Public Function JulianToStandard(ToConvert As String) As Date
Dim intYear As Integer
Dim intJulian As Integer
Dim dtmBaseDate As Date
intYear = Left(ToConvert, 2)
intJulian = Right(ToConvert, 3)
If intYear = 0 Then intYear = 2000
JulianToStandard = DateAdd("d", intJulian, "12/31/" & intYear - 1)
End Function