Complete the formula to get the value from the 2nd row and 3rd column of the range A1:D5.
=INDEX(A1:D5, [1], 3)
The INDEX function returns the value at the intersection of the specified row and column. Here, the row is 2 and the column is 3.
Complete the formula to get the value from the 4th row and 1st column of the range B2:E6.
=INDEX(B2:E6, [1], 1)
The INDEX function uses the row number as the second argument. Here, 4 means the 4th row in the range.
Fix the error in the formula to correctly return the value from the 3rd row and 2nd column of range C1:F4.
=INDEX(C1:F4, [1], 2)
The row argument should be 3 to get the 3rd row in the range. Using 4 or 2 would give wrong or error results.
Fill both blanks to get the value from the 1st row and 4th column of the range D3:G7.
=INDEX(D3:G7, [1], [2])
The first blank is the row number (1), and the second blank is the column number (4) within the range.
Fill all three blanks to get the value from the 2nd row and 3rd column of the range A2:D6 using INDEX with the optional area_num argument set to 1.
=INDEX((A2:D6, E2:H6), [1], [2], [3])
The first blank is the row number (2), the second is the column number (3), and the third is the area number (1) to select the first range.