Elapsed Time

  • Thread starter Thread starter D. McDonough
  • Start date Start date
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.
 
Use the DateDiff function:

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