0
0
Excelspreadsheet~5 mins

INDEX function in Excel - Step-by-Step Guide

Choose your learning style9 modes available
Introduction
The INDEX function helps you find a value inside a table or range by giving its row and column numbers. It is useful when you want to get data from a specific position without searching manually.
When you want to get the price of a product from a price list by its row and column position.
When you have a table of monthly sales and want to find the sales number for a specific month and product.
When you want to extract a value from a large data set without scrolling or filtering.
When you combine it with other functions like MATCH to find data dynamically.
When you want to avoid errors from manually looking up values in a table.
Steps
Step 1: Click
- the cell where you want the result
The cell is selected and ready for input
Step 2: Type
- the formula bar
You start entering the formula
💡 Start with =INDEX(
Step 3: Select
- the range of cells containing your data
The range appears inside the formula
💡 For example, select A1:C5
Step 4: Type
- the formula bar after the range
You add the row number
💡 For example, type ,2 to get the second row
Step 5: Type
- the formula bar after the row number
You add the column number
💡 For example, type ,3 to get the third column
Step 6: Type
- the formula bar
The formula looks like =INDEX(A1:C5,2,3)
💡 Press Enter to see the result
Step 7: Press
- Enter key
The cell shows the value from row 2, column 3 of the selected range
Before vs After
Before
Cell is empty, no formula entered
After
Cell shows the value from the specified row and column in the selected range, for example 150
Settings Reference
Array argument
📍 First argument in the INDEX formula
Defines the table or range where to look for the value
Default: No default, must specify
Row number argument
📍 Second argument in the INDEX formula
Specifies which row to pick from the array
Default: No default, must specify
Column number argument
📍 Third argument in the INDEX formula
Specifies which column to pick from the array
Default: 1 if omitted
Common Mistakes
Entering a row or column number that is outside the range size
Excel returns a #REF! error because the position does not exist
Check the size of your range and use row and column numbers within that size
Forgetting to separate arguments with commas
Excel shows a formula error because syntax is incorrect
Always separate the array, row number, and column number with commas like =INDEX(A1:C5,2,3)
Using INDEX without specifying the row number
Excel returns an error because row number is required
Always provide at least the row number argument
Summary
The INDEX function returns a value from a table by row and column numbers.
You must specify the range, row number, and optionally the column number.
It helps you find data quickly without searching manually.