Calcuate Elapse Time

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have one table that track video conference meetings (among other things).
In it I have a StartTime and an EndTime. I want to calcuate the duration of
each meeting. It seems pretty simple, but everything I have found is way to
in depth.
 
I have one table that track video conference meetings (among other things).
In it I have a StartTime and an EndTime. I want to calcuate the duration of
each meeting. It seems pretty simple, but everything I have found is way to
in depth.

In a Query, or as the control source of a form or report textbox, you
can put

TimeElapsed: DateDiff("n", [StartTime], [EndTime])

to get the number of minutes.

John W. Vinson[MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top