find if vendors are oprating in multiple regions/countries/etc...

ulooz

New Member
Joined
Nov 18, 2014
Messages
16
Office Version
  1. 365
Platform
  1. Windows
Hi, i'm looking to find if vendors are oprating in multiple regions/countries/etc... should be very simple but i'm having a brain fart... example below. so ideally i'd have a formula, for example, to flag Vendor A as "YES" and vendor B as "NO".


VendorRegionSales
AAMER100,000
AEMEA50,000
AAPAC75,000
BAPAC25,00
CAMER45,000
DAMER20,000
DEMEA70,000
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Provided that there are no duplicate records within a vendor, then e.g.

Excel Formula:
=IF(COUNTIFS(A2:A8,A2:A8)>1,"YES","NO")
 
Upvote 0
Provided that there are no duplicate records within a vendor, then e.g.

Excel Formula:
=IF(COUNTIFS(A2:A8,A2:A8)>1,"YES","NO")

Thank you. Why is the critera range same as the criteria? and I may have oversimplified the table, because Vendor B can be listed hundreds of time, each time there is an entry. would this necessarily return a yes value?
 
Upvote 0
Book1
ABCD
1VendorRegionSales
2AEMEA100,000YES
3AEMEA50,000YES
4APIO75,000YES
5BAPAC25,00NO
6CAMER45,000NO
7DAMER20,000YES
8DEMEA70,000YES
9 
Sheet1
Cell Formulas
RangeFormula
D2:D9D2=IFERROR(IF(ROWS(UNIQUE(FILTER($B$2:$B$100,($A$2:$A$100=A2)*($A$2:$A$100<>""))))>1,"YES","NO"),"")




Copy down
 
Upvote 0

Forum statistics

Threads
1,223,840
Messages
6,174,960
Members
452,593
Latest member
Jason5710

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