I have a worksheet that contains four ranges consisting of a list of sales people and their total sales for each quarter of the year:
Tom $40,000
**** $44,000
Harry $47,000
Mary $51,000
Tom $40,000
**** $44,000
Harry $44,000
Mary $43,000
Tom $42,000
**** $44,000
Harry $49,000
Mary $43,000
Tom $49,000
**** $46,000
Harry $44,000
Mary $42,000
This is not an exact representation of the ranges (which include months) but this gives you an idea. I have two validation lists: one for the sales_people and another for the ranges of the totals sales for each quarter: Qtr1_Sales, Qtr2_Sales, Qtr3_Sales, and Qtr4_Sales.
The idea is to set up a double lookup table to quickly look up a sales person's sales for any particular quarter. For example, Tom's 3 quarter's sales were $42,000. Harry's second quarter sales were $45,000.
In E3, I have a lookup for the salesperson's name, in E4, I have a lookup for each Qtr, and in E5, I have my result. Here's my function (it works fine): INDEX(INDIRECT(E4), MATCH(E3, sales_people, 0))
This formula also works: INDEX(Qtr3_Sales, MATCH(E3, sales_people, 0))
So, I am wonderiing why this doesn't work: INDEX(E4, MATCH(E3, sales_people, 0))
If E4 contains Qtr3_Sales, why are not the results the same for the two previous formulas?
Bookmarks