Given the table below:
A B 1 Name Score 2 Alice 85 3 Bob 90 4 Carol 78 5 Dave 92
What is the result of the formula =INDEX(B2:B5, MATCH("Carol", A2:A5, 0))?
Think about how MATCH finds the position of "Carol" in the list, then INDEX returns the value at that position.
The MATCH function finds "Carol" at the 3rd position in A2:A5. INDEX then returns the 3rd value in B2:B5, which is 78.
Which of the following is a key advantage of using INDEX-MATCH over VLOOKUP in Excel?
Think about the direction of lookup in VLOOKUP compared to INDEX-MATCH.
VLOOKUP can only search in the leftmost column and return values to the right. INDEX-MATCH can look up values anywhere, including to the left.
Choose the formula that correctly returns the score for "Bob" from columns A (names) and B (scores):
Remember the order of arguments for MATCH and INDEX.
Option A correctly uses MATCH to find "Bob" in A2:A5 and INDEX to return the corresponding value from B2:B5. Other options have incorrect argument orders or syntax.
You have a large dataset with 100,000 rows. Which approach optimizes performance when using INDEX-MATCH?
Think about how Excel processes ranges and match types.
Using exact match with limited ranges reduces calculation time. Approximate match requires sorted data and full columns slow performance. Volatile functions recalc often and slow down.
Given the data:
A B 1 Name Score 2 Alice 85 3 Bob 90 4 Carol 78 5 Dave 92
Why does the formula =INDEX(B2:B5, MATCH("Eve", A2:A5, 0)) return #N/A?
Consider what happens when MATCH does not find the lookup value.
MATCH returns #N/A when the lookup value is not found. Since "Eve" is not in A2:A5, MATCH returns #N/A, causing INDEX to also return #N/A.