Summing Issue on Time entries

A

aMack

--
A MACKENZIE, CMA, MBAI need the users to enter time lost such as 1 hr 32 min.

I than need to sum the total lost time over a period of time: 1:32 + 5:30 +
8:00 = 15:02.

What data field type should I use?

How do I get the sum to display as 15:02 on a report? Using date/time is not
working.

Thanks
 
M

Marshall Barton

aMack said:
need the users to enter time lost such as 1 hr 32 min.

I than need to sum the total lost time over a period of time: 1:32 + 5:30 +
8:00 = 15:02.

What data field type should I use?

How do I get the sum to display as 15:02 on a report? Using date/time is not
working.


You can use a Date/Time field in the table so users can
enter 1:32.

However, if a sum of those time value exceeds 24 hours, you
can not use a time format to display something like 25:02.
Instead your report can use a text box expression such as:
=Int(24 * timelost) & Format(timelost, "\:nn")
 

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

Top