ADDRESS
The ADDRESS function in Google Sheets is a powerful tool that allows you to convert row and column numbers into a cell reference. It returns a cell reference as a string, which can be highly useful in various scenarios. Learn how to use the ADDRESS function effectively with our comprehensive guide.
Function Syntax and Parameters
Syntax: ADDRESS(row, column, [absolute_relative_mode], [use_a1_notation], [sheet])
Parameters:
row: The row number that you want to reference.column: The column number that you want to reference.absolute_relative_mode: [Optional] Determines whether the reference is absolute or relative. Defaults to 1 (absolute).use_a1_notation: [Optional] Determines whether the reference uses A1 notation or R1C1 notation. Defaults to TRUE (A1 notation).sheet: [Optional] The name or index of the sheet. Defaults to the current sheet.
Step-by-Step Tutorial
-
Using
ADDRESSwith row and column numbers:- Example:
=ADDRESS(3, 2) - Result:
$B$3(orSheet1!B3if the sheet name is provided)
- Example:
-
Using
ADDRESSwith absolute or relative references:- Example:
=ADDRESS(3, 2, 2) - Result:
B3(without the dollar signs)
- Example:
-
Using
ADDRESSwith R1C1 notation:- Example:
=ADDRESS(3, 2, , FALSE) - Result:
R3C2(instead of A1 notation)
- Example:
Use Cases and Scenarios
- Data Manipulation: Use the
ADDRESSfunction to dynamically reference cells based on certain conditions.
Related Functions
None
Related Articles
None