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
CONTRACT NUMBER
LINE ITEM IDPURCHASE QTYSHIPPED QTYACCEPTED QTY
0001
000111
1
0001
0003111
0001
0005111
0001
0007111
0001
1423
1
1
1
0005
0001AA10
0
0005
0001AC100
0005
0001BC100
0005
0001BE10
0
0006
0001CA11
0
0006
0001CB11
0
<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> </tbody>
 

Excel Facts

Wildcard in VLOOKUP
Use =VLOOKUP("Apple*" to find apple, Apple, or applesauce
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,215,047
Messages
6,122,858
Members
449,096
Latest member
Erald

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