Hi
I am trying to display the best performer for a certain date. This is what the table looks like:
sales: 1/2/10 1/3/10 1/4/10
dave 1 2 3
tim 9 9 9
jack 1 2 3
input: date
output: tim
I want my formula to look up on a certain date, who the best sales person is.
What I've used to return the best sales person @ 1/2 is:
=Offset(
sales,
Match( Max ( 1, 9 , 1),
[1,9,1],
0
)
However, I would like to use Hlookup to go through the dates and put in the ARRAYS for the corresponding dates where " 1, 9, 1" are supposed to be.
So if I put in 1/2 it would return the array " 2 9 2" and not the values "2 9 2" so this way I don't have to manually change the formula each time I do a search in my data table.
attached file:Excel Hlookup Help.xlsx
Bookmarks