How to Match Multiple Criteria, Exclude Specific Value, "Yes", "No"

Kirstie99

New Member
Joined
Aug 10, 2017
Messages
8
Office Version
  1. 365
I have 2 tabs - one that shows items, status and price, and then another tab where I need a formula to say "Yes" or "No". I am trying to see if there are any other authorized sellers selling the same item number, no matter the price. Ideally I would like to say are there any other authorized sellers with an EXACT price match. Data is 10s of thousands of rows with over 3K items so it cannot be manual. I have used concatenate and look ups this way - but I feel like there should be a better/cleaner way to do this as I want this to be easy for others to use and not have so many columns. Any help is appreciated!


Item Number SellerPriceStatus
1234Bob4.99Authorized
2345Henry5.99Authorized
5649Phil6.33Authorized
1234Eric5.45Unauthorized
5648Adam2.12Unauthorized
1234Dan3.63Authorized

ItemSellerAny other Authorized?
1234Bob
2345BobYes
5649Bob
1234Bob
5648Bob
1234Bob
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Oh and when I want it to say "Yes" "No" It would be like any authorized sellers excluding "Bob" because I want to see if someone else is also selling that item
 
Upvote 0
Try:
Book2
ABCDEFGH
1tem Number SellerPriceStatus ItemSellerAny other Authorized?
21234Bob4.99Authorized1234BobYes
32345Henry5.99Authorized2345BobYes
45649Phil6.33Authorized5649BobYes
51234Eric5.45Unauthorized1234BobYes
65648Adam2.12Unauthorized5648BobNo
71234Dan3.63Authorized1234BobYes
Sheet6
Cell Formulas
RangeFormula
H2:H7H2=IF(COUNTIFS($A$2:$A$7,F2,$B$2:$B$7,"<>"&G2,$D$2:$D$7,"Authorized"),"Yes","No")
 
Upvote 0
Solution
Try:
Book2
ABCDEFGH
1tem Number SellerPriceStatus ItemSellerAny other Authorized?
21234Bob4.99Authorized1234BobYes
32345Henry5.99Authorized2345BobYes
45649Phil6.33Authorized5649BobYes
51234Eric5.45Unauthorized1234BobYes
65648Adam2.12Unauthorized5648BobNo
71234Dan3.63Authorized1234BobYes
Sheet6
Cell Formulas
RangeFormula
H2:H7H2=IF(COUNTIFS($A$2:$A$7,F2,$B$2:$B$7,"<>"&G2,$D$2:$D$7,"Authorized"),"Yes","No")
This worked perfectly!! Thank you so much!!!!!
 
Upvote 0

Forum statistics

Threads
1,225,626
Messages
6,186,089
Members
453,336
Latest member
Excelnoob223

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