INDEX(array, row_num, [column])
=INDEX(A1:A5,3)
This function can be used to retrieve values from a range of cells, and will return the value in cell A3.
=INDEX(A1:B5,3,1)
The INDEX function can also be used to retrieve values from a range of cells that include more than one column, and will return the value in cell A3.
=INDEX(A1:A5,2,2)
This will return the value in cell B2.
=INDEX((A1:C5,A7:C10),1,3,2)
This example, will return the value in A7:C10 at row 1 and column 3.
The INDEX
function allows users to return a value or reference to a value in a table or range.