Elapsed Time

D

D. McDonough

Sorry if this question is asked a lot ... but couldn't
find it when I searched.

How can I calculate the time that's elapsed given 2 other
times ... (e.g. time in and time out)?

Thanks.
 
D

Douglas J. Steele

Use the DateDiff function:

DateDiff("s", TimeIn, TimeOut), for example, will give you the seconds
between the times.
 
Top