total for call duration

G

Guest

I'm trying to total a time duration column. This is what it looks like

Call Duration
00:02:35
00:08:01
00:24:33

I need to total these numbers really for the end report so I may be in the
wrong spot. I can't get them to total (sum) the format should remain h:mm:ss

Thanks
 
M

Marshall Barton

tri_p said:
I'm trying to total a time duration column. This is what it looks like

Call Duration
00:02:35
00:08:01
00:24:33

I need to total these numbers really for the end report so I may be in the
wrong spot. I can't get them to total (sum) the format should remain h:mm:ss


Assuming the duration field is a date/time field, using a
text box in the report footer with the expression
=Sum(duration) should work, except that the total is still a
date/time value in days since 12/30/1899. So you will still
have to munge it around to get any total greater than 24
hours to display the way you want. The normal(?) approach
is to keep the duration as the number of seconds in a Long
type field.

More information about where/how you arrive at the duration
value might help clarify the problem.
 
G

Guest

Thanks for the reply. I did repost this over in the report area but I am
happy to give you any more info to help.

The call duration is passed to me so it is not a calculated field it comes
as hh:mm:ss

I also think I may have explained in better and more detail in the report
section.
 

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