Okay, I am involved in a class that is putting us through a business simulation. I have devised a way to use Excel to help my team make the best possible choices. In the simulation, there is something called a perceptual map. Basically it is a graph with 5 circles located on it. Each circle represents a potential segment to sell to. Each year you are able to reposition your products to be inside the segments that you wish. This is done by assigning your product the proper coordinates X,Y to place them inside the desired circle on the map. Whew! It's much easier seen than explained...

Here is my question: If I have a center coordinate for a segment (x,y) located in A1(x) and A2(y), and also have a database with each product, (A1:A???), their x coordinates (B1:B???), and their y coordinates (C1:C???), is there a way to find the top 10 combinations of x and y coordinates in the database to the center point coordinates, then return the name of the product?

TIA!


Example:

A B C D E
Angler 1 2 3 7
Bait 2 3
Costa 6 7
Drink 4 7


A=Products
B=X Coordinates
C=Y Coordinates

D=X Coordinate (Center Point)
E=Y Coordinate (Center Point)

If I only wanted to find the top 2 closest matching combinations, my results would return:

Drink 4 7
Costa 6 7