Convert Julian (Date) to Short Date Format

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a function to simply convert a Julian Date to a normal date, i.e.
5257 to 09/14/05?

Thanks, SKB
 
SKB said:
Is there a function to simply convert a Julian Date to a normal date,
i.e. 5257 to 09/14/05?

Does this example help?

Dim djul As String
Dim dt As Date

djul = "5257"
dt = DateSerial(Left(djul, 1), 1, 0) + Right(djul, 3)
 
Back
Top