Need Help

Z941714

Board Regular
Joined
Jan 15, 2008
Messages
64
Not sure how or if this can be done. Workload pull has in column "A" contract number, (hundreds of contract numbers), column "B" has the line item for each contract number, column "C" purchase qty, column "D" shipped qty, column "E" accepted qty. Need a formulas in column "F" to identify contracts in column "A" that complete. (complete equals purchase qty = shipped qty = accepted qty.

Z941714
[TABLE="width: 431"]
<colgroup><col width="139" style="width: 104pt; mso-width-source: userset; mso-width-alt: 5083;"> <col width="102" style="width: 77pt; mso-width-source: userset; mso-width-alt: 3730;"> <col width="115" style="width: 86pt; mso-width-source: userset; mso-width-alt: 4205;"> <col width="104" style="width: 78pt; mso-width-source: userset; mso-width-alt: 3803;"> <col width="114" style="width: 86pt; mso-width-source: userset; mso-width-alt: 4169;"> <tbody>[TR]
[TD="width: 139, bgcolor: aqua"]CONTRACT NUMBER
[/TD]
[TD="width: 102, bgcolor: aqua"]LINE ITEM ID[/TD]
[TD="width: 115, bgcolor: lime"]PURCHASE QTY[/TD]
[TD="width: 104, bgcolor: lime"]SHIPPED QTY[/TD]
[TD="width: 114, bgcolor: lime"]ACCEPTED QTY
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0001
[/TD]
[TD="bgcolor: transparent"]0001[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]1
[/TD]
[TD="bgcolor: transparent"]1
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0001
[/TD]
[TD="bgcolor: transparent"]0003[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]1
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0001
[/TD]
[TD="bgcolor: transparent"]0005[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]1
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0001
[/TD]
[TD="bgcolor: transparent"]0007[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]1
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0001
[/TD]
[TD="bgcolor: transparent"]1423
[/TD]
[TD="bgcolor: transparent"]1
[/TD]
[TD="bgcolor: transparent"]1
[/TD]
[TD="bgcolor: transparent"]1
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0005
[/TD]
[TD="bgcolor: transparent"]0001AA[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]0
[/TD]
[TD="bgcolor: transparent"]0
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0005
[/TD]
[TD="bgcolor: transparent"]0001AC[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]0
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0005
[/TD]
[TD="bgcolor: transparent"]0001BC[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]0[/TD]
[TD="bgcolor: transparent"]0[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0005
[/TD]
[TD="bgcolor: transparent"]0001BE[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]0
[/TD]
[TD="bgcolor: transparent"]0[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0006
[/TD]
[TD="bgcolor: transparent"]0001CA[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]1
[/TD]
[TD="bgcolor: transparent"]0
[/TD]
[/TR]
[TR]
[TD="bgcolor: transparent"]0006
[/TD]
[TD="bgcolor: transparent"]0001CB[/TD]
[TD="bgcolor: transparent"]1[/TD]
[TD="bgcolor: transparent"]1
[/TD]
[TD="bgcolor: transparent"]0[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Perhaps something like this:

=IF(AND(C2=D2,C2=E2),"Complete","Incomplete")

Or

=IF(COUNTIF(C2:E2,C2)=3,"Complete","Incomplete")
 
Upvote 0
Thanks dreid1011, but I should have stated it should be on contract level. All line items equal per contract. In the example contract is complete, lets on contract 0005 line item 0001AA is complete, but the other three line item are not complete.
 
Upvote 0
Thanks dreid1011, but I should have stated it should be on contract level. All line items equal per contract. In the example contract is complete, lets on contract 0005 line item 0001AA is complete, but the other three line item are not complete.

Ok, how about this:

=IF(AND(SUMIF($A$2:$A$12,A2,$C$2:$C$12)=SUMIF($A$2:$A$12,A2,$D$2:$D$12),SUMIF($A$2:$A$12,A2,$C$2:$C$12)=SUMIF($A$2:$A$12,A2,$E$2:$E$12)),"Complete","Incomplete")
 
Upvote 0

Forum statistics

Threads
1,225,757
Messages
6,186,850
Members
453,379
Latest member
gabriellegonzalez

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