logo-mini

INDEX Function

The INDEX function in Excel is a powerful tool that allows users to retrieve specific data from a list or table. It has a variety of uses, including extracting data from a specific cell, returning a cell’s address, and returning a cell’s column or row number.

The INDEX function has two main syntaxes:

INDEX(array, row_num, [column_num])

INDEX(reference, row_num, [column_num], [area_num])

The first syntax allows users to retrieve data from a specific cell within an array, or range of cells. The array argument specifies the range of cells from which to retrieve data, the row_num argument specifies the row number of the cell to retrieve, and the optional column_num argument specifies the column number of the cell to retrieve.

For example, consider the following array of data:

A B C


1 2 3

4 5 6

7 8 9

To retrieve the value in cell B2 (5), we would use the following INDEX function:

=INDEX(A1:C3, 2, 2)

The second syntax allows users to retrieve data from a specific cell within a reference, which can be a named range or a cell or range of cells on a worksheet. The reference argument specifies the range of cells from which to retrieve data, the row_num argument specifies the row number of the cell to retrieve, and the optional column_num argument specifies the column number of the cell to retrieve. The optional area_num argument allows users to specify which area of the reference to use if the reference includes multiple ranges.

For example, consider the following named range “data” that includes the same array of data as in the previous example:

A B C


1 2 3

4 5 6

7 8 9

To retrieve the value in cell B2 (5), we would use the following INDEX function:

=INDEX(data, 2, 2)

The INDEX function can also be used with the MATCH function to search for a specific value within a range of cells and return the corresponding cell’s row or column number. For example, if we wanted to find the row number of the cell that contains the value 5 in the “data” named range, we could use the following INDEX and MATCH functions:

=MATCH(5, data, 0)

This would return row number 2, as 5 is located in the second row of the “data” range.

The INDEX and MATCH functions are two powerful functions in Microsoft Excel that can be used together to perform advanced lookups. Here’s how you can use them:

  1. First, let’s assume that you have a list of data in a range of cells, and you want to find a specific value in that list. You can use the INDEX function to return the value at a specific position in the list.
  2. To use the INDEX function, you need to specify the range of cells that you want to search, and then the row and column numbers of the cell that you want to return. For example, if you want to return the value in the second row and third column of a range of cells A1:C3, you can use the following formula:

=INDEX(A1:C3, 2, 3)

  1. Now, let’s say that you don’t know the exact row and column numbers of the cell that you want to return. You can use the MATCH function to find the row or column number of a specific value in a range of cells.
  2. To use the MATCH function, you need to specify the value that you are looking for and the range of cells that you want to search. For example, if you want to find the row number of the value “apple” in a range of cells A1:A3, you can use the following formula:

=MATCH(“apple”, A1:A3, 0)

  1. You can combine the INDEX and MATCH functions to perform an advanced lookup. For example, if you want to find the value in the second column of a range of cells A1:C3 that matches the value “apple” in column A, you can use the following formula:

=INDEX(A1:C3, MATCH(“apple”, A1:A3, 0), 2)

This formula will use the MATCH function to find the row number of the value “apple” in column A, and then use the INDEX function to return the value in the second column of that row.

Download the sample files: INDEX FUNCTION – Click here