Using sumif between two columns with an additional criteria

Luisdp

New Member
Joined
Jun 15, 2015
Messages
5
I have a table with 4 Columns.

ID Name Start_Time Finish_Time
VSL1 Name1 15:00 18:00
VSL1 Name1 12:00 16:00
VSL2 Name2 05:00 15:00
VSL2 Name2 12:00 15:00

What I want to do is to get the total worked time of every ID.

For example, for VSL1 would be 18:00 - 12:00, and for VSL2 15:00 - 05:00.

I am struggling with this formula! Please HELP!!
 

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.
Is creating another column an option? if so, I would create a fifth column with the following formula:
Code:
=D2-C2

and use the following formula to get the total:
Code:
=SUMIF(A:A, K1,E:E )
K1 is being the cell that has an ID to look for, i.e.: VSL1
 
Upvote 0
wouldnt VSL1 be 18-15 + 16-12 = 3 + 4 = 7? In your example, you appear to be subtracting the minimum start time time for an ID from the maximum finish time for the ID. This also is possible but I just wanted to be sure what you wanted. Also, can the finish time extend beyond Midnight into the next day? Or can the start time begin before midnight?

-R
 
Upvote 0
Creating another Column is not an option :/ Thats why I'm struggling so much with the solution. I am looking for an array formula maybe that could help me.
 
Upvote 0
Exactly, what I wan to do is take the minimum time of start and maximun of finish. In that way I will have the total worked time Finish - Start. And answering to your question, the finish time and the start time can past midnight, in other words it can be between several days.


wouldnt VSL1 be 18-15 + 16-12 = 3 + 4 = 7? In your example, you appear to be subtracting the minimum start time time for an ID from the maximum finish time for the ID. This also is possible but I just wanted to be sure what you wanted. Also, can the finish time extend beyond Midnight into the next day? Or can the start time begin before midnight?

-R
 
Upvote 0
This formula is based on "ID" is in column A, "start time" in column C and "finish time" in column D

=MAX(IF(A:A=A1,D:D))-MIN(IF(A:A=A1,C:C)

A1 is where the ID you want to find the details and then press ctrl+shift+enter . Ensure the destination cell is also formatted as time.
 
Upvote 0
That works perfect BUT what I want to get its the total time of all IDs. :/

HELP!

This formula is based on "ID" is in column A, "start time" in column C and "finish time" in column D

=MAX(IF(A:A=A1,D:D))-MIN(IF(A:A=A1,C:C)

A1 is where the ID you want to find the details and then press ctrl+shift+enter . Ensure the destination cell is also formatted as time.
 
Upvote 0
I had a similar idea. You need to enter your times as shown in this example in the event that times cross over midnight.


Excel 2010
ABCD
1IDNameStart_timeFinish_time
2VSL1Name11/15/15 3:00 PM1/15/15 6:00 PM
3VSL1Name21/15/15 12:00 PM1/15/15 4:00 PM
4VSL2Name21/15/15 5:00 AM1/15/15 3:00 PM
5VSL2Name21/15/15 12:00 PM1/15/15 3:00 PM
6VSL3Name31/14/15 10:00 PM1/15/15 6:00 PM
7VSL3Name31/15/15 12:00 PM1/15/15 4:00 PM
8
9
10
11VSL16.00
12VSL210.00
13VSL320.00
Sheet4
Cell Formulas
RangeFormula
C11{=(MAX(IF($A$2:$A$7=B11,$D$2:$D$7))-MIN(IF($A$2:$A$7=B11,$C$2:$C$7)))*24}
C12{=(MAX(IF($A$2:$A$7=B12,$D$2:$D$7))-MIN(IF($A$2:$A$7=B12,$C$2:$C$7)))*24}
C13{=(MAX(IF($A$2:$A$7=B13,$D$2:$D$7))-MIN(IF($A$2:$A$7=B13,$C$2:$C$7)))*24}
Press CTRL+SHIFT+ENTER to enter array formulas.
 
Upvote 0
That works perfect BUT what I want to get its the total time of all IDs. :/

HELP!

do you a list of individual IDs or does it have to be pulled out from the data group. if you already have a list, it is easy otherwise it can ce tricky
 
Upvote 0

Forum statistics

Threads
1,215,734
Messages
6,126,543
Members
449,316
Latest member
sravya

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