Address Function in Excel
The ADDRESS function returns the absolute address of the cell based on a specified row and column number. The cell address is returned as a text string. For example, โ=ADDRESS(1,2)โ returns โ$B$1.โ An inbuilt function of Excel, it is categorized under the lookup and reference functions.
Syntax of the ADDRESS Function
The syntax is stated as follows:

The function accepts the following mandatory arguments:
Key Takeaways
- Row_Num: This is the row number used in the cell reference. The โrow_num=1โ represents row 1.
- Column_Num: This is the column number used in the cell reference. The โcolumn_num= 2โ represents column B.
The function accepts the following optional arguments:
- Abs_num (absolute number): This is the type of cell referenceโabsolute or relative. If this parameter is omitted, the default value is set at 1 (absolute). It can have any of the following values depending on the requirement:
| Abs_num | Explanation |
| 1 | Absolute reference like โ$A$1โ |
| 2 | Relative column, absolute row like โA$1โ |
| 3 | Absolute column, relative row like โ$A1โ |
| 4 | Relative reference like โA1โ |
- A1: This is the reference style used. It can be either โA1โ (1 or true) or โR1C1โ (0 or false). If this parameter is omitted, the default styleย is โA1.โ
- Sheet_text: This is the name of the sheet used in the cell address. If this parameter is omitted, no worksheet name is used.
How to Use the Address Function in Excel? (With Example)
Let us consider the various possible outcomes of the ADDRESS function, as shown in the succeeding image.
The observations of a few rows are explained as follows:
1. The Third Row
- The โrow=1โ and โcolumn=4.โ
- The formula is โ=ADDRESS(1,4).โ
- By default, the parameters โabsolute numberโ and โreference typeโ are set at 1.
- The result is an absolute address with an absolute row and an absolute column, i.e., โ$D$1.โ
- The โ$Dโ signifies the absolute column โ4โ and โ$1โ signifies the absolute row โ1.โ

2. The Fifth Row
- The โrow=5,โ โcolumn=20,โ and โabs_num=2.โ
- The ADDRESS formula can be rewritten in a simpler form as โ=ADDRESS(5,20,2).โ
- The reference style is set at 1 (true) when it has not been defined explicitly.
- The result is โT$5,โ which has an absolute row ($5) and a relative column (T).

3. The Seventh Row
- We pass all the arguments of the ADDRESS function, including the optional ones.
- The โrow=10,โ โcolumn=9,โ โabs_num=4,โ โA1=1,โ and โsheet_name=Example1.โ
- The address formula can be rewritten in a simpler form as โ=ADDRESS(10,9,4,1,”Example1″).โ
- The result is โExample1!I10.โ
- Since the โabsolute numberโ parameter is set at 4, the result is a relative reference (โI10โ).

How to Use the INDIRECT Function to Pass the Address?
The reference of a cell can be derived with the help of the ADDRESS function. However, if we are interested in obtaining the value stored in the Excel address of cells, we use the INDIRECT function. With this function, we can get the actual value through reference.
Syntax of the INDIRECT Function

The function accepts the following arguments:
- Ref_text: This is the cell reference supplied in the form of a text string.
- A1: This is a logical value that specifies the style of reference. It can be either โA1โ (true or omitted) or โR1C1โ (false).
The first argument is mandatory, while the second is optional.
Let us consider an example.
The data is given in the following image. We want to find the value of the cell reference passed in the INDIRECT function.
In the first observation, the โADDRESS=$D$3.โ We rewrite the function as โ=INDIRECT(A3).โ
In cell D3, under the sample data, the value is โMathematics.โ This is the same as the result of the INDIRECT function in cell B3.

Let us consider another example in which the reference style is R7C5.
Here, we must set the โref_typeโ to โfalseโ (0), so that the INDIRECT function can read the reference style.
The output of โ=INDIRECT(A8,0)โ is 87%.

Frequently Asked Questions (FAQs)
What are the uses of the ADDRESS function of Excel?
The uses of the function are listed as follows:
– It is used to address the first or the last cell in a range.
– It helps convert a column number to a letter and vice versa.
– It is used to construct a cell reference within a formula.
– It helps find the cell value from the row and column number.
– It returns the address of the cell with the highest value.
How does the ADDRESS function return the address of the cell with the highest value?
The ADDRESS function is used in combination with the MATCH function to return the cell address with the highest value. The formula is stated as follows:
โ=ADDRESS(MATCH(MAX(B:B),B:B,0),COLUMN(B2))โ
The MAX function returns the maximum value from the range โB:B.โ The MATCH function looks for that maximum value and returns the row number (index). The column returns the column number of โB2.โ
How does the ADDRESS function return the complete address of a named range?
The formula to return the full address of a named range is stated as follows:
โ=ADDRESS(ROW(range), COLUMN(range)) & “:” & ADDRESS(ROW(range) + ROWS(range)-1, COLUMN(range) + COLUMNS(range)-1)โ
โRangeโ is the named range whose address is required.
If the range address is required as a relative reference, the โabs_numโ argument is set at 4. The formula can be rewritten as follows:
โ=ADDRESS(ROW(range), COLUMN(range), 4) & “:” & ADDRESS(ROW(range) + ROWS(range)-1, COLUMN(range) + COLUMNS(range)-1, 4)โ
- The ADDRESS function creates a cell address from a given row and column number.
- The syntax of the ADDRESS function isโโADDRESS(row_num, column_num, , , ).โ
- The โrow_numโ and โcolumn_numโ are mandatory arguments, while โabs_num,โ โA1,โ and โsheet_textโ are optional arguments.
- The โabs_numโ parameter can be set as follows:
- 1 or omittedโAbsolute reference
- 2โAbsolute row, relative column
- 3โRelative row, absolute column
- 4โRelative reference
- The reference style can be set at either โA1โ (1 or true) or โR1C1โ (0 or false).
- The default reference style is โA1.โ
- The INDIRECT function helps obtain the value stored in the Excel address of cells.ย The syntax of the INDIRECT function isโโINDIRECT(ref_text, ).โ
Recommended Articles
This has been a guide to Address Excel Function. Here we discuss how to use the Address Formula in Excel along with step by step examples and downloadable Excel templates.`