Time calculation run hours per day

PaulWAdams

New Member
Joined
Nov 13, 2019
Messages
2
I need help to get a calculation of run hours per day for 3 units, based on generator breaker shut/open times. We currently use an integration over time to count the time for the breakers closed, but this gets messed up when the computer is rebooted or updated. I need to calculate the decimal run time hours for each of 3 units for each calendar day- with a time that may have started with bkr closed from previous month, until output bkr finally opens within the current month, sometimes several days later. Sometimes we shutdown a unit after midnight, and start it back up in the morning, and so have 2 separate run times within the same day. Our current spreadsheet looks something like this: columns FGHIJK are direct times that generator output bkrs are shut or opened, and BCDE are the daily runtime hours for each unit. The integrated times in B-E can be off by an hour or so on some days due to other activity on the computer- and we need the runtime hours calculated each day. I usually have to manually resolve conflicts by working out the daily hours from the breaker close/open times, but need help breaking it up for the separate days with something close to this table:

ABCDEFGHIJK
1dateGT1 onlineGT2 onlineST3 onlineTotal Plant onlineGT1 bkr shutGT1 bkr openGT2 bkr shutGT2 bkr openST3 bkr shutST3 bkr open
212415.62242411/03/19 10:01:0011/03/19 00:48:0011/01/19 06:01:0011/01/19 21:38:0011/05/19 22:41:00
322417.98242411/04/19 07:01:0011/03/19 21:52:0011/02/19 06:01:0011/05/19 22:41:00
4315.6524242411/05/19 22:41:00
5416.98242424
6522.6822.6822.6822.68

<tbody style="border-collapse: collapse; width: auto;">
</tbody>
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Hello and welcome to MrExcel

There are a couple of issues with this. The value in column A should probably be a date (e.g. 1 Nov 2019) and secondly the non-normalised data in column F:K make this relatively difficult. However, I do have a formula that will work out the "on" time for each day (assuming column A contains a date value). This also assumes the data in columns F:K have both the date and time as you have shown.

It will not work if there are more than 2 "shut" or "open" entries for one day (it can handle at most entries 2 per day). If you have 3 or more then you may want to manually calculate the on time. This assumes that if there are no entries in either the open or close column then the breaker was assumed to be closed at the start of the month.

The following formula is an array formula, entered into cell B3 being the first entry for a month for GT1 (where the days date is in A3) and can be copied down. Being an array formula you need to confirm it using Ctrl+Shift+Enter after you have entered it. You will know you have done it correctly when curly brackets { } appear automatically around the formula. The reference to F1:F10 is for GT1 close (change to suit) and G1:G10 is for GT1 open (also change to suit).

=IF(OR(MAX(IF(G$1:G$10<$A3, G$1:G$10,0))>MAX(IF(F$1:F$10<$A4, F$1:F$10, 0)), AND(MIN(F$1:F$10)>=$A4, MIN(G$1:G$10)<$A3)), 0, (MIN($A4, MIN(IF(G$1:G$10>=$A3, G$1:G$10, 8^8)))-MAX($A3, MAX(IF(F$1:F$10<$A4, F$1:F$10, 0))))*24)+IFERROR((INDEX(F$1:F$10, MATCH(A3, INT(F$1:F$10),0))>INDEX(G$1:G$10, MATCH(A3, INT(G$1:G$10),0)))*24, 0)

This is broken into 3 parts:
the first 1/3rd up to the part "<$A3)), 0," is working out if the time should be zero for the day.
the second part from "0, (MIN($A4," to ")*24)" is taking the min of (end of day, off time) less max of (start of day, on time) to work out the number of hours on per day
the third part from "IFERROR" adds 24 where the on time is after the off time (it is correcting an error in part 2).

I trust this helps.
 
Upvote 0
Here's another option:


Book1
ABCDEFGHIJK
1dateGT1 onlineGT2 onlineST3 onlineTotal Plant onlineGT1 bkr shutGT1 bkr openGT2 bkr shutGT2 bkr openST3 bkr shutST3 bkr open
211/1/201924.0015.62242411/3/2019 10:0111/3/2019 0:4811/1/2019 6:0111/1/2019 21:381/1/201911/5/2019 22:41
311/2/201924.0017.98242411/4/2019 7:0111/3/2019 21:5211/2/2019 6:0111/5/2019 22:41
411/3/201912.6524.00242411/5/2019 22:41
511/4/201916.9824.002424
611/5/201922.6822.6822.683322.68
Sheet5
Cell Formulas
RangeFormula
B2=(SUMIFS(G:G,G:G,">="&A2,G:G,"<"&A3)-SUMIFS(F:F,F:F,">="&A2,F:F,"<"&A3)-IF(MAXIFS(F:F,F:F,"<"&A2)+MAXIFS(G:G,G:G,"<"&A2),MAXIFS(F:F,F:F,"<"&A2)>MAXIFS(G:G,G:G,"<"&A2),MIN(F:F)>MIN(G:G))*A2+IF(MAXIFS(F:F,F:F,"<"&A3)+MAXIFS(G:G,G:G,"<"&A3),MAXIFS(F:F,F:F,"<"&A3)>MAXIFS(G:G,G:G,"<"&A3),MIN(F:F)>MIN(G:G))*A3)*24
C2=(SUMIFS(I:I,I:I,">="&A2,I:I,"<"&A3)-SUMIFS(H:H,H:H,">="&A2,H:H,"<"&A3)-IF(MAXIFS(H:H,H:H,"<"&A2)+MAXIFS(I:I,I:I,"<"&A2),MAXIFS(H:H,H:H,"<"&A2)>MAXIFS(I:I,I:I,"<"&A2),MIN(H:H)>MIN(I:I))*A2+IF(MAXIFS(H:H,H:H,"<"&A3)+MAXIFS(I:I,I:I,"<"&A3),MAXIFS(H:H,H:H,"<"&A3)>MAXIFS(I:I,I:I,"<"&A3),MIN(H:H)>MIN(I:I))*A3)*24
D2=(SUMIFS(K:K,K:K,">="&A2,K:K,"<"&A3)-SUMIFS(J:J,J:J,">="&A2,J:J,"<"&A3)-IF(MAXIFS(J:J,J:J,"<"&A2)+MAXIFS(K:K,K:K,"<"&A2),MAXIFS(J:J,J:J,"<"&A2)>MAXIFS(K:K,K:K,"<"&A2),MIN(J:J)>MIN(K:K))*A2+IF(MAXIFS(J:J,J:J,"<"&A3)+MAXIFS(K:K,K:K,"<"&A3),MAXIFS(J:J,J:J,"<"&A3)>MAXIFS(K:K,K:K,"<"&A3),MIN(J:J)>MIN(K:K))*A3)*24


This is not an array formula, but it requires the MAXIFS function, which is only available in newer versions of Excel. It can be rewritten without it, but it would become an array formula. Another advantage of this formula is that there is no limit on the number of times the breakers can be opened or closed per day.

And I also echo some of the issues that Andrew raised. Probably 2/3 of the formula is figuring out whether the machine is on or off at the start of the day. And even with that, I had to add a dummy date in J2 to make it work for ST3.

Also, notice that I put a full date in column A, which is also necessary.

The B, C, and D are essentially the same, I just had to change the column references. I could adapt it so you could copy across as well as down, but it would make it more complicated and use OFFSET, which I'd rather not. We could also rearrange the sheet a bit to make that work.

The B4 value is different from your example, but I believe this value to be correct.

Anyway, let us know if this helps.
 
Upvote 0
Thanks much for the answers. The date is actually full but I was just filling out the post off the top of my head, sorry.
 
Upvote 0

Forum statistics

Threads
1,214,524
Messages
6,120,049
Members
448,940
Latest member
mdusw

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