Epoch Time

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Does anyone have a simple script for converting Epoch time
to a normal timestamp? Any help is appreciated.

Tom
 
Tom said:
Does anyone have a simple script for converting Epoch time
to a normal timestamp?


If you mean the Unix time value, then you can use:

DateAdd("s", epochvalue, #1/1/1970#)
 
Back
Top