How to state yes to lowest price by seller for specific item?

Kirstie99

New Member
Joined
Aug 10, 2017
Messages
8
Office Version
  1. 365
Any help is appreciated! I am trying to select unique items per seller, but want it to say "Yes" on the lowest price. In my file I have Item_Seller and I just used =+IF(MATCH(A2,A:A,0)=ROW(),"yes","No") but I dont know how to have it look at price too and select the lowest? TIA!!!
Item_SellerItem #SellerPriceUnique item per Seller, lowest price
1234_Bob1234Bob5.99Yes
1234_Bob1234Bob4.99
1234_Steve1234Steve5.79Yes
1234_Henry1234Henry3.21Yes
 
Hi Kirstie99,

If your excel version is 365, here's what I would do: *I am using the French version of Excel 365, so there might be some errors due to manual translation or discrepancies in the Excel user manual*

Excel Formula:
=IF($D2=MIN(FILTER($D:$D,($B:$B=$B2)*($C:$C=$C2),"")),"Yes","No")

Bests regards,

Vincent
 
Upvote 0
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
 
Upvote 0
Hi Kirstie99,

If your excel version is 365, here's what I would do: *I am using the French version of Excel 365, so there might be some errors due to manual translation or discrepancies in the Excel user manual*

Excel Formula:
=IF($D2=MIN(FILTER($D:$D,($B:$B=$B2)*($C:$C=$C2),"")),"Yes","No")

Bests regards,

Vincent
Thank you so much!!!!
 
Upvote 0
What version of Excel are you using?

I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)
Thank you for the tip! 365, I just updated :)
 
Upvote 0
Another option:
Book6
ABCDE
1Item_SellerItem #SellerPriceUnique item per Seller, lowest price
21234_Bob1234Bob5.99No
31234_Bob1234Bob4.99Yes
41234_Steve1234Steve5.79Yes
51234_Henry1234Henry3.21Yes
Sheet1
Cell Formulas
RangeFormula
E2:E5E2=IF(D2=MINIFS(D:D,B:B,B2,C:C,C2),"Yes","No")
 
Upvote 0

Forum statistics

Threads
1,226,797
Messages
6,193,051
Members
453,772
Latest member
aastupin

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