Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
How can I make the difference between two fields time format and get the result in seconds?
Sample:
(Time (EndTime, 'hh.mm.ss')) - (Time (StartTime, 'hh.mm.ss'))
Thank All
Try this.
Interval((Time (EndTime, 'hh.mm.ss'))-(Time (StartTime, 'hh.mm.ss')), 'SS')
Try inteval(), like:
Interval(
(Time (EndTime, 'hh.mm.ss')) - (Time (StartTime, 'hh.mm.ss'))
, 's')