Creates a cell reference as text, given specified row and column numbers.
This function works the same in Google Sheets as it does in Excel — same syntax and arguments.
ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])The ADDRESS function is used to construct a cell reference string based on numeric row and column coordinates. It allows you to specify the reference type (absolute or relative) and the reference style (A1 or R1C1).
=ADDRESS(1, 1)Result: $A$1
Returns the absolute reference for the cell at row 1, column 1.
=ADDRESS(2, 3, 4)Result: C2
Returns the relative reference for the cell at row 2, column 3.
Yes, by providing the sheet_text argument, you can include the sheet name in the resulting reference string.