R
Reggie
Hi and TIA! I posted this to another grroup but then saw this one and it
looks more suited to my question. I've researched and tried many many
conversion functions but none give me the results. One Example
Public Function JDatetoDate(MyDate As Integer) As Date
JDatetoDate = DateAdd("d", Right(MyDate, 3) - 1, "01/01/" &
Left(year(Now()), 3) & Left(MyDate, 1))
End Function
?JDatetoDate(8044) returned 2/13/2018 expected 2/13/2008
?JDatetoDate(0044) returned 2/13/2014 expected 2/13/2010
Any ideas. Basically want to convert a 4 digit julian to a date/time and
then I will add 1 minute to it. Thanks!
looks more suited to my question. I've researched and tried many many
conversion functions but none give me the results. One Example
Public Function JDatetoDate(MyDate As Integer) As Date
JDatetoDate = DateAdd("d", Right(MyDate, 3) - 1, "01/01/" &
Left(year(Now()), 3) & Left(MyDate, 1))
End Function
?JDatetoDate(8044) returned 2/13/2018 expected 2/13/2008
?JDatetoDate(0044) returned 2/13/2014 expected 2/13/2010
Any ideas. Basically want to convert a 4 digit julian to a date/time and
then I will add 1 minute to it. Thanks!