[]
        
(Showing Draft Content)

ADDRESS

This function uses the row and column numbers to create a cell address in text.

Syntax

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

Arguments

This function has these arguments:

Argument

Description

row_num

Row number in the cell reference

column_num

Column number in the cell reference

abs_num

[Optional] Type of reference to return; can be any of:


Value - Type of Cell Reference Returned


1 or omitted - Absolute


2 - Absolute row, relative column


3 - Relative row, absolute column


4 - Relative

a1style

[Optional] Logical value that indicates whether the reference style is A1; if TRUE or omitted, the style is A1; if FALSE, then the style is R1C1

sheet_text

[Optional] Name of the sheet to use as an external reference; if omitted, no sheet name is used

Data Types

Accepts numeric and string data. Returns string data.

Examples

ADDRESS(2,4,2,FALSE)