Is there any easy way to tally up the minutes and seconds?

Burrgogi

Active Member
Joined
Nov 3, 2005
Messages
340
Office Version
  1. 2010
Platform
  1. Windows
I've been watching a TV series and recorded the runtime of each episode. In column A, I have something like:

52:32
53:26
52:44
etc.

I'd like to subtract 1 min and 38 sec from each of these numbers and get a grand total at the end.

I could easily calculate it by hand but I have nearly ~70 of these and that would take quite some time. Is there any way to do this using a formula?
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Try:
Book1
ABC
1TimeSubtract from each time
252:32:000:01:38
353:26:00Grand Total
452:44:00158:37:06
Sheet2
Cell Formulas
RangeFormula
C4C4=SUM((A2:A4-C2))
 
Upvote 0
Because you can never have too many answers. This subtracts 1 minute and 38 seconds from each of the numbers. I am going to say you should custom format your cells with [h]:mm.


20-09-15 time.xlsx
ABCD
1TimeSubtract from each time
252:321:3850:54
353:2651:48
452:4451:06
5Grand Total153:48
Time
Cell Formulas
RangeFormula
D2:D4D2=A2-$C$2
D5D5=SUM(D2:D4)
 
Last edited:
Upvote 0
@AhoyNC

Shouldn't your formula contain an absolute reference like so?

=SUM((A2:A4-$C$2))

Because you can never have too many answers. This subtracts 1 minute and 38 seconds from each of the numbers. I am going to say you should custom format your cells with [h]:mm.

Oh wow, I can't believe that I almost forgot about formatting the cells in the proper time format. Thanks for the reminder.
 
Upvote 0
Burrgogi - Since my formula is not copied to any other cells there is no need for an absolute reference. This part of my formula "(A2:A4-C2)" returns the same array of values as your helper column without the need for the extra column. Also your value of 1:38 in cell C2 is actual subtracting 1 hour and 38 mins. from the times and not 1 minute 38 seconds.
 
Upvote 0
Judging by the title & the fact that the times are per episode, maybe this would be correct.
Depends on exactly how the times have been entered

+Fluff New.xlsm
DE
600:01:38
752:32:00
853:26:00
952:44:00
10
112:33:48
Master
Cell Formulas
RangeFormula
E11E11=SUM((D7:D9/60-E6))
 
Upvote 0
Judging by the title & the fact that the times are per episode, maybe this would be correct.
Depends on exactly how the times have been entered

=SUM((D7:D9/60-E6))

I was interested in trying out your formula but I'm getting a value error. The cells have been formatted as [h]:mm as suggested by Ezguy4u.
 
Upvote 0
What exactly is in the cell & is 52:32 meant to be 52 hours 32 mins or 52 mins 32 secs
 
Upvote 0

Forum statistics

Threads
1,214,630
Messages
6,120,634
Members
448,973
Latest member
ChristineC

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