Given the table below in Excel cells A1:B4:
A1: Name B1: Score A2: Anna B2: 85 A3: Ben B3: 90 A4: Cara B4: 78
What is the result of the formula =INDEX(B2:B4, 2)?
Remember, INDEX returns the value at the given position in the range.
The range B2:B4 contains scores 85, 90, and 78. The formula asks for the 2nd item, which is 90.
Given the table in cells A1:C3:
A1: Product B1: Price C1: Stock A2: Pen B2: 1.5 C2: 100 A3: Book B3: 12 C3: 50
What is the result of =INDEX(A1:C3, 3, 2)?
INDEX with two numbers returns the value at the intersection of that row and column.
Row 3, column 2 in the range A1:C3 is cell B3, which contains 12.
Choose the correct syntax for the INDEX function to return the 4th item from range D1:D10.
Check the correct use of commas and parentheses in Excel formulas.
Option C uses the correct syntax with a comma separating arguments and no missing parts.
Given a column of numbers in A1:A100, which formula returns the last non-empty value efficiently?
Think about how to count non-empty cells to find the last value.
COUNTA counts non-empty cells, so INDEX with COUNTA returns the last filled cell's value.
Consider the formula =INDEX(B2:B5, 0). What error does it produce and why?
Check the valid row numbers for INDEX function.
Row number must be a positive integer; zero is invalid and causes #REF! error.