minute calculation

Johnson5

New Member
Joined
Sep 3, 2014
Messages
3
I have the following columns and I'm trying to calculate the difference in minutes between rows?
So in the second row, the difference should be: 23:54-12:26 = 688 minutes
Third row should be: 9:02-23:54 = 548 minutes

DayHours24MinutesDifference Minutes
11226
12354
292
21132

<colgroup><col width="64" span="4" style="width:48pt"> </colgroup><tbody>
</tbody>

I can probably get the answer using a few IF functions but the equation is quite long, I was wondering if there are any shorter ways?

Thanks
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
D2, copied down:

=IF($A2<>$A1,(($B3&":"&$C3)-($B2&":"&$C2))*1440,"")

I suppose the difference on Day 2 is 150, not 548, minutes.
 
Upvote 0

Forum statistics

Threads
1,215,427
Messages
6,124,831
Members
449,190
Latest member
rscraig11

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