Excel ADDRESS function with formula examples

The tutorial gives a brief introduction to the ADDRESS function syntax and shows how to use it to return an Excel cell address and more.

To create a cell reference in Excel, you can type the column and row coordinates manually. Alternatively, you can get an Excel cell address from the row and column numbers supplied to the ADDRESS function. Almost pointless on its own, in combination with other functions this technique can be the only solution in situations when it is not possible to refer to a cell directly.

Excel ADDRESS function - syntax and basic uses

The ADDRESS function is designed to get a cell address in Excel based on the specified row and column numbers. A cell address is returned as a text string, not an actual reference.

The function is available in all versions of Excel for Microsoft 365 - Excel 2007.

The syntax of the ADDRESS function is as follows:

ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])

The first two arguments are required:

row_num - the row number to use in the cell reference.

column_num - the column number to build the cell reference.

The last three arguments, which specify the cell reference format, are optional:

abs_num - the reference type, absolute or relative. It can take any of the below numbers; the default is absolute.

  • 1 or omitted - absolute cell reference like $A$1
  • 2 - mixed reference: relative column and absolute row like A$1
  • 3 - mixed reference: absolute column and relative row like $A1
  • 4 - relative cell reference such as A1

a1 - the reference style, A1 or R1C1. If omitted, the default A1 style is used.

  • 1 or TRUE or omitted - returns the cell address in the A1 reference style where columns are letters and rows are numbers.
  • 0 or FALSE - returns the cell address in the R1C1 reference style where rows and columns are represented by numbers.

sheet_text - the name of the worksheet to include in the external reference. The sheet name should be supplied as a text string and enclosed in quotation marks, e.g. "Sheet2". If omitted, no worksheet name is used, and the address defaults to the current sheet.

For example:

=ADDRESS(1,1) - returns the address of the first cell (i.e. the cell at the intersection of the first row and first column) as an absolute cell reference $A$1.

=ADDRESS(1,1,4) - returns the address of the first cell as a relative cell reference A1.
Excel ADDRESS function

In the following table, you will find a few more reference types that can be returned by ADDRESS formulas.

Formula Result Description
=ADDRESS(1,2) $B$1 Absolute cell reference
=ADDRESS(1,2,4) B1 Relative cell reference
=ADDRESS(1,2,2) B$1 Relative column and absolute row
=ADDRESS(1,2,3) $B1 Absolute column and relative row
=ADDRESS(1,2,1,FALSE) R1C2 Absolute reference in the R1C1 style
=ADDRESS(1,2,4,FALSE) R[1]C[2] Relative reference in the R1C1 style
=ADDRESS(1,2,1,,"Sheet2") Sheet2!$B$1 Absolute reference to another sheet
=ADDRESS(1,2,4,,"Sheet2") Sheet2!B1 Relative reference to another sheet

How to use ADDRESS function in Excel - formula examples

The below examples show how to use the ADDRESS function inside bigger formulas to accomplish more difficult tasks.

Return a cell value in a given row and column

If your goal is to get a value from a specific cell based on its row and column numbers, use the ADDRESS function together with INDIRECT:

INDIRECT(ADDRESS(row_num, column_num))

The ADDRESS function outputs the cell address as text. The INDIRECT function turns that text into a normal reference and returns the value from the corresponding cell.

For example, to get a cell value based on the row number in E1 and the column number in E2, use this formula:

=INDIRECT(ADDRESS(E1,E2))
Formula to return a cell value in a given row and column

Get the address of a cell with the highest or lowest value

In this example, we'll first find the highest and lowest values in the range B2:B7 by using the MAX and MIN functions and output those values into special cells:

Cell E2: =MAX(B2:B7)

Cell F2: =MIN(B2:B7)
Find the maximum and minimum values.

And then, we'll use ADDRESS in combination with the MATCH function to get the cell addresses.

Cell with the max value:

=ADDRESS(MATCH(E2,B:B,0), COLUMN(B2))

Cell with the min value:

=ADDRESS(MATCH(F2,B:B,0), COLUMN(B2))
Get the address of a cell with the maximum and minimum values.

In case you do not want the highest and lowest values in separate cells, you can nest the MAX/MIN function in the first argument of MATCH. For example:

Cell with the highest value:

=ADDRESS(MATCH(MAX(B2:B7),B:B,0), COLUMN(B2))

Cell with the lowest value:

=ADDRESS(MATCH(MIN(B2:B7),B:B,0), COLUMN(B2))

How these formulas work

To find the row number, you use the MATCH(lookup_value, lookup_array, [match_type]) function that returns a relative position of lookup_value in lookup_array. In our formula, the lookup value is the number returned by the MAX or MIN function, and the lookup array is the entire column. Consequently, a relative position of the lookup value in the array exactly matches the row number on the sheet.

To find the column number, you use the COLUM function. Of course, nothing prevents you from typing the number directly in the formula, but COLUMN saves the trouble of manual counting in case the target column is in the middle of the sheet.

Get a column letter from a column number

To turn any given number into a column letter, use the ADDRESS function inside of SUBSTITUTE:

SUBSTITUTE(ADDRESS(1,column_number,4),"1","")

As an example, let's find the column letter corresponding to the number in A2:

=SUBSTITUTE(ADDRESS(1,A2,4),"1","")

Looking at the results below, we can say that the first column on the sheet is A, which is obvious; the 10th column is J, the 50th column is AX, and the 100th column is CV:
Formula to get a column letter from a column number

How this formula works

For starters, set up the ADDRESS function to return a relative reference to the first cell in the target column:

  • For the row number, use 1.
  • For the column number, supply the reference to the cell containing the number, A2 in our example.
  • For the abs_num argument, enter 4.

As the result, ADDRESS(1,A2,4) would return A1.

To get rid of the row coordinate, wrap the above formula in the SUBSTITUTE function and replace "1" with an empty string (""). Done!

Get the address of a named range

To find the address of a named range in Excel, you will first need to obtain the first and last cell references, and then join them together. This works a bit differently in pre-dynamic Excel (2019 and older) and Dynamic Array Excel (Office 365 and Excel 2021). The below examples are for Excel 2019 - Excel 2007. The instructions for Excel 365 and Excel 2021 are here.

How to get address of the first cell in a range

To return a reference to the first cell in a named range, use this generic formula:

ADDRESS(ROW(range),COLUMN(range))

Assuming the range is named "Sales", the real formula goes as follows:

=ADDRESS(ROW(Sales), COLUMN(Sales))

And returns the address of the upper left cell in the range:
Formula to get the address of the first cell in a named range

In this formula, the ROW and COLUMN functions return an array of all the row and column numbers in the range, respectively. Based on those numbers, the ADDRESS function builds an array of cell addresses. But because the formula is entered in a single cell, only the first item of the array is displayed, which corresponds to the first cell in the range.

How to get address of the last cell in a range

To find the address of the last cell in a named range, use this generic formula:

ADDRESS(ROW(range)+ROWS(range)-1,COLUMN(range)+COLUMNS(range)-1)

Applied to our range named "Sales", the formula takes the following shape:

=ADDRESS(ROW(Sales) + ROWS(Sales)-1, COLUMN(Sales) + COLUMNS(Sales)-1)

And returns the reference to the bottom right cell of the range:
Formula to return the reference to the last cell in a named range

This time, we need a bit more complex calculations to work out the row number. Like in the previous example, the ROW function gives us an array of all the row numbers in the range, {4;5;6;7} in our case. We need to "shift" these numbers by the total row count minus 1, so that the first item in the array becomes the last row number. To find the total row count, we employ the ROWS function and subtract 1 from its result: (4-1=3). Then, we add 3 to each element of the initial array to do the required shift: {4;5;6;7} + 3 = {7;8;9;10}.

The column number is calculated in a similar manner: {2,3,4}+3-1 = {4,5,6}

From the above arrays of row and column numbers, the ADDRESS function assembles an array of cell addresses, but returns only the first one corresponding to the last cell in the range.

The same result can also be achieved by picking the maximum values from the arrays of the row and column numbers. However, this only works in an array formula, which requires pressing Ctrl + Shift + Enter to be completed correctly:

=ADDRESS(MAX(ROW(Sales)), MAX(COLUMN(Sales)))

How to get full address of a named range

To return the complete address of a named range, you just need to concatenate the two formulas from the previous examples and insert the range operator (:) in-between.

ADDRESS(ROW(range), COLUMN(range)) & ":" & ADDRESS(ROW(range) + ROWS(range)-1, COLUMN(range) + COLUMNS(range)-1)

To make it work for our sample data set, we replace the generic "range" with the real range name "Sales":

=ADDRESS(ROW(Sales), COLUMN(Sales)) & ":" & ADDRESS(ROW(Sales) + ROWS(Sales)-1, COLUMN(Sales) + COLUMNS(Sales)-1)

And get the complete range address as an absolute reference $B$4:$D$7:
Formula to get the address of a named range as an absolute reference

To return the range address as a relative reference (without the $ sign, like B4:D7), set the abs_num argument in both ADDRESS functions to 4:

=ADDRESS(ROW(Sales), COLUMN(Sales), 4) & ":" & ADDRESS(ROW(Sales) + ROWS(Sales)-1, COLUMN(Sales) + COLUMNS(Sales)-1, 4)

Naturally, the same changes can be made in individual formulas for the first and last cell, and the result will look similar to this:
Formula to return the address of a named range as a relative reference

How to get the address of a named range in Excel 365 and Excel 2021

Unlike the traditional "one formula - one cell" behavior in older versions, in new Excel, any formula that can potentially return multiple values, does this automatically. Such behavior is called spilling.

For example, instead of returning the address of the first cell, the below formula outputs the addresses of each and every cell in a named range:

=ADDRESS(ROW(Sales), COLUMN(Sales))
The addresses of all the cells in a named range are returned.

To get the address of the first cell only, you need to enable implicit intersection, which is triggered by default in Excel 2019 and older. For this, put the @ symbol (implicit intersection operator) before the range names:

=ADDRESS(@ROW(Sales), @COLUMN(Sales))

In a similar manner, you can fix other formulas.

To get last cell in the range:

=ADDRESS(@ROW(Sales) + ROWS(Sales)-1, @COLUMN(Sales) + COLUMNS(Sales)-1)

To get the address of a named range:

=ADDRESS(@ROW(Sales), @COLUMN(Sales)) & ":" & ADDRESS(@ROW(Sales) + ROWS(Sales)-1, @COLUMN(Sales) + COLUMNS(Sales)-1)

The below screenshot shows the results:
Formula to get the address of the first cell in a named range in Excel 365

Tip. When opening a worksheet with formulas created in an older version in dynamic array Excel, an implicit intersection operator is inserted by Excel automatically.

That's how you return a cell address in Excel. To have closer look at all the formulas discussed in this tutorial, you are welcome to download our sample workbook below. I thank you for reading and hope to see you on our blog next week!

Practice workbook for download

Excel ADDRESS function - formula examples (.xlsx file)

67 comments

  1. hi if i have a list of addresses in a column (all of H) and different names corresponding to these addresses in another column (all of B) is there a way to find any matching addresses in column H and them it pull the corresponding name from column b even if this is different name and produce these into na table?
    column b column h
    john smith 1 abc close
    joe bloggs 3 dfg close
    joe smith 3 dfg close
    joe smith 1 abc close
    joe bloggs 1 abc close
    john bloggs 5 ghj close

    1 abc close 3 dfg close 5ghj close
    john smith joe bloggs john bloggs
    joe smith joe smith
    joe bloggs

    something like the above if that helps with the explanation thanks

  2. I have a Sheet of different names and items with their receiving is issuing dates. i want to make another sheet of every single item with all their details.

  3. I know the address of a cell. How can I change the value of it by its address?

    For example, there is no value at address A6 and I am trying to enter the value of cell(B6) in a different worksheet.

    Is it possible: function(A6, B6) so that the value at address B6 updates the value in cell A6.

  4. Thank you so much for this instruction! How can this be tailored for removing rows from a table? The rows are removed from the main table and placed in a separate table once the item is complete. My formula returns results based off the month (columns E-P) that have both N/A and 0 as entries. My current formula looks like this:

    =CHOOSECOLS(FILTER(Table1, (INDIRECT("'Current Checklist'!"&ADDRESS(3,MATCH(E$3,'Current Checklist'!$A$2:$Q$2,0))&":"&ADDRESS(52,MATCH(E$3,'Current Checklist'!$A$2:$Q$2,0))) = 'Current Checklist'!T3),"No data"),1,2,3,4,MATCH(E3,'Current Checklist'!$A$2:$Q$2,0))

    The issue becomes when I delete the row as mentioned, the formula breaks until I update the second ADDRESS row number from 52 to whatever the new row number is after deletion. Nothing else in this formula changes. Is there a way I can update the Address formula for this?

  5. I have multiple columns and have just one row. I need to locate the address of the column for a specific text. Could you please help me with that? Thank you.

    • Data range can use any index match formula

  6. I am interested in get the address of min value of cell within specify RANGE . I broke my head. Thank you.

    • Hello!
      Write this formula on the first row of your worksheet

      =ADDRESS(MATCH(MAX(A1:A100),A1:A100,0),1,1)

      This should solve your task.

  7. Hi, I´d like to know how to use Address function as an argument in others functions which use intervals like COUNT, COUNTIF, COUNTA

  8. i have a range defined as the Selection.CurrentRegion.Select
    in this range are 3 cells.
    2 colored green #99FF99 and 1 colored blue #00FFFF

    i don't know the best approach to this

    any guidance is appreciated

    • it seems some of my message was deleted
      should read:

      i have a range defined as the Selection.CurrentRegion.Select
      in this range are 3 cells.
      2 colored green #99FF99 and 1 colored blue #00FFFF
      I simply want created a macro to find these and copy each of these 3 cells to the one below

      i don't know the best approach to this

      any guidance is appreciated

  9. Hello, I have a rather tricky problem and I'm not sure if its possible on Excel.

    I have the cell address of a client with the different projects listed in the column to the right hand side. There are a different number of projects for each client. I am after a way of creating an address range for the list of projects. Example below

    A B
    Nike Shoes
    Tops
    Shorts

    Adidas Shoes
    Hats

    Is there a way of scanning across from A1 where the Client name is located and returning the cell address B1:B3 or however many projects there are? Might it help if I placed something in the gap between the two project lists.

    This is the last piece of the puzzle in my spreadsheet if anyone could point me in the right direction I would be grateful.

    Many thanks in advance,
    Martin

    • A................................B
      Nike..........................Shoes
      ..................................Tops
      ..................................Shorts
      ............................................
      Adidas.....................Shoes
      ..................................Hats

  10. Hi, I want to search a column on another sheet for a name and then return the address the name is in. How would I do this?

    Many thanks in advance.

      • Worked a treat! Big thank you

      • Hi,

        I have a similar issue which this formula is close to solving after trying it but with one exception:

        When searching the array for the match, I would like it to return each entry as there may be multiple which aren't exact matches.

        Is this possible?

        Thankyou

  11. Hi, I was trying to this section "How to get address of the first cell in a range"

    ADDRESS(ROW(range),COLUMN(range))

    But Excel returned an array instead of the first cell address, any idea?

    Thanks in advance

    • Hi!
      The information you provided is not enough to understand your case and give you any advice.
      What formula did you use and what result did you get?

      • Hi Alexander,

        Thanks for your reply, I was using ADDRESS(ROW(range),COLUMN(range)). My table range start from B2:C7.

        So if I am using ADDRESS(ROW(range),COLUMN(range), it should return as first cell which is B2, right? But I am getting the entire table as array showing the cell address

        B2 C2
        B3 C3
        B4 C4
        B5 C5
        B6 C6
        B7 C7

  12. Hi,

    If i wanted to find Building name from address mentioned in single cell then which formula should i use & how to use. Also, i have more than 8000 entries & building name differs in all of them.
    e.g if i want to find- SAI GHARKUL from
    PLOT A- 4A, A- 4B ,B/ H DHOOT HOSPITAL ,FLAT NO 6 Plot No- A- 4( A) A- 4( B) Gut No- 32/ 2 Brijwadi Chikalthana MIDC Aurangabad ,SAI GHARKUL ,Aurangabad (MH) H.O, AURANGABAD-MH, MAHARASHTRA, INDIA - 431001

    Thanks in advance.

  13. I want to row number and column number of maximum value in a table of ten day sales of ten members..........like table adress a2:k10... acolumn contain name...so data set is b2:k10....from this set i want maximum value row and column number or cell address...please can anyone told me how to find it

Post a comment



Thank you for your comment!
When posting a question, please be very clear and concise. This will help us provide a quick and relevant solution to
your query. We cannot guarantee that we will answer every question, but we'll do our best :)