Calculate Elapsed Time

  • Thread starter Thread starter Michael
  • Start date Start date
M

Michael

Hi Folks - I will need to calculate elapsed time. Is it best to store the
date and time in separate fields, or to have only one field with the date
and time? Thanks.

Michael
 
If you are talking about calculating and storing elapsed time, I would
recommend against it. It is generally frowned upon to store computed values
in a table, when they can easily be computed via a query. Just store the
start time and the End Time, and compute the Elapsed time whenever you need
it.

I generally store the date and time components in a single field, rather
than trying to separate them.
--
HTH
Dale

Don''t forget to rate the post if it was helpful!

email address is invalid
Please reply to newsgroup only.
 
Back
Top