Summing time intervals

milefile

New Member
Joined
Mar 15, 2017
Messages
6
I'm using some data that came from an IVR system. Many of the numbers I am using are time intervals formatted as HH:MM:SS like speed of answer, length of call, etc. I need to sum these numbers and also get them to sum in a pivot table, but they will not. I have tried every format that remotely looks like it might be relevant to what the value represents, but no luck. Only sums to zero. I am not interested in time of day, only the measurement of length of time using HH:MM:SS. What can I do to these numbers to get them to add up?
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
@milefile, the values are likely coming in as text. Try opening a helper column beside them and seeing if this formula provides you with workable number (I'm assuming your original data starts in A2 here, so this would go into B2 and be drag-copied down as fara s needed):

Code:
=INT(VALUE(LEFT(A1,2))/24)+TIMEVALUE(A1)

Format the new column as Time > 37:30:55
 
Last edited:
Upvote 0
@milefile, the values are likely coming in as text. Try opening a helper column beside them and seeing if this formula provides you with workable number (I'm assuming your original data starts in A2 here, so this would go into B2 and be drag-copied down as fara s needed):

Code:
=INT(VALUE(LEFT(A1,2))/24)+TIMEVALUE(A1)

Format the new column as Time > 37:30:55


YES! Thank you so much. Worked and makes perfect sense.
 
Upvote 0

Forum statistics

Threads
1,223,908
Messages
6,175,304
Members
452,633
Latest member
DougMo

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top