Total Number of Minutes

reyrey

New Member
Joined
Jun 30, 2011
Messages
49
Im trying to figure out a excel function that would capture the "total number of minutes" based of the following criteria.


Start Day
End Day
Start Date Time
End Date Time
Total number of minutes
10/4/2017 0:00
10/4/2017 23:59
10/4/2017 22:00
10/4/2017 23:00
90
10/5/2017 0:00
10/5/2017 23:59
10/5/2017 23:30
10/6/2017 2:30
810
10/4/2017 23:30
10/5/2017 13:00
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
How are you getting 90 and 810 minutes for those?
Surely 22:00 to 23:00 is 60 minutes (1 hour)
and 23:30 to 2:30 is 180 minutes (3 hours)

Try
=(D2-C2)*1440
 
Upvote 0
90 minutes was from: cell C2 and D2 (60 minutes) plus C3 and D3 (30 minutes)
810 minutes was from: cell C3 and D3 (30 minutes) plus C3 and D3 (780 minutes)

Trying to get the total number of minutes between C2 and D2 based on the time range between A2 and B2
So for example: between Start Day and End Day, I want to see how many minutes were complete from Start Date Time and End Date Time.
 
Upvote 0
You can use this array formula in E2

=1440*SUM(IF(C$2:C$4 >B2,0,IF(D$2:D$4<A2,0,IF(D$2:D$4 >B2,B2,D$2:D$4)-IF(C$2:C$4< A2,A2,C$2:C$4))))
<a2,0,if(d$2:d$4><a2,a2,c$2:c$4))))
<a2,0,if(d$2:d$4><a2,a2,c$2:c$4))))

confirmed with CTRL+SHIFT+ENTER and copied down

You won't get exactly the results you suggest because the "End Day" periods end at a minute to midnight - if you want to get the results 90 and 910 then change B2 to 10/5/2017 00:00 and B3 to 10/6/2017 00:00</a2,a2,c$2:c$4))))
</a2,0,if(d$2:d$4></a2,a2,c$2:c$4))))
</a2,0,if(d$2:d$4>
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,082
Messages
6,128,700
Members
449,464
Latest member
againofsoul

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