try this in the Lost Focus of the field that you enter the julian date.
Private Sub JulianDateFieldName_LostFocus()
me.NewDate = fJtoD(JulianDateFieldName)
End Subin the lost focus field
And the function that goes with it.
Function fJtoD(strJulianDdate As String) As Date
'Convert Julian to a Date
Dim strDate As String, lngYear As Long
strDate = Mid(strJulianDdate, 1, 3) 'Number of days
lngYear = Mid(strJulianDdate, 4, 2) 'Year
fJulianDdate = DateSerial(lngYear, 1, 1) + strDate - 1
End Function
Dalain