Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I convert my datetime field to number? because need to sum/group the time.

Thanks.

share|improve this question

1 Answer

If you are trying to convert DateTime to EpochTime:

  // Convert DateTime to EpochTime
  DateTimeVar InputDateTime := DateTime(2008,9,23,11,4,55);
  NumberVar EpochTimeValue;
  DateTimeVar EpochBaseTime := DateTime(1970,1,1,0,0,0);
  EpochTimeValue := DateDiff("s",EpochBaseTime,InputDateTime);
  EpochTimeValue

or try just

  tonumber(totext({table.date},"yyyyMMddHHmmss"))
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.