I'm having trouble in getting the Index & Match combination to give me the results I want, obviously indicating that my formulas are incorrect.
When I use the formula =MATCH(A12,A11:A1000,0) to search for the position of the value in A12 within the range of A11:A1000, I get the correct answer of 2, since the A12 value is right at the top of the range.
When I use the formula =INDEX(A11:AB1000,2,25) to go to the second row down and 25 columns to the right in the range A11:AB1000 I get the desired answer of 1620.
However, when I try to combine the Match and Index arguments in the following manner =INDEX(A11:AB1000,2,25,MATCH(A12,A11:A1000,0)) I get a #REF error, when what I want to get is the answer 1620.
What I am doing incorrectly ?? I'm trying to use a value found in the A column in one location, match it in another range of varying values and return the desired offset value
Thanks
When I use the formula =MATCH(A12,A11:A1000,0) to search for the position of the value in A12 within the range of A11:A1000, I get the correct answer of 2, since the A12 value is right at the top of the range.
When I use the formula =INDEX(A11:AB1000,2,25) to go to the second row down and 25 columns to the right in the range A11:AB1000 I get the desired answer of 1620.
However, when I try to combine the Match and Index arguments in the following manner =INDEX(A11:AB1000,2,25,MATCH(A12,A11:A1000,0)) I get a #REF error, when what I want to get is the answer 1620.
What I am doing incorrectly ?? I'm trying to use a value found in the A column in one location, match it in another range of varying values and return the desired offset value
Thanks