Time Calculations

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

Guest

Hi

I have a table with a “down time†and an “up time†field. I would like to
get the total number of minutes between the two. The time difference may be
as long as 16 hours but I want it to display just in total minutes.

Thanks in advance for any help with this.

Chuck
 
Chuck216 said:
Hi

I have a table with a "down time" and an "up time" field. I would
like to get the total number of minutes between the two. The time
difference may be as long as 16 hours but I want it to display just
in total minutes.

Thanks in advance for any help with this.

Chuck

=DateDiff("n", [down time], [up time])
 
The extra set of parenthesis is not needed. I copied this from a more
elaborate field.

=DateDiff("n",[Down Time],[Up Time])


--
Rick B



Rick B said:
=(DateDiff("n",[Down Time],[Up Time]))
--
Rick B



Chuck216 said:
Hi

I have a table with a "down time" and an "up time" field. I would like to
get the total number of minutes between the two. The time difference may
be
as long as 16 hours but I want it to display just in total minutes.

Thanks in advance for any help with this.

Chuck
 

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