# ADDRESS

lookup · from excel · excel: verified match · sheets: verified match

returns a cell address as text from row and column numbers

## signature

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

returns: `text`

## arguments

- row_num: number — required
- column_num: number — required
- abs_num: number — optional, defaults to 1
- a1: boolean — optional, defaults to 1
- sheet_text: text — optional, defaults to 0

## examples

formula and result, asserted in the engine test suite.

| formula | result | with |
| --- | --- | --- |
| `=ADDRESS(2, 3)` | `$C$2` | — |
| `=ADDRESS(2, 3, 4, TRUE, "Sheet2")` | `Sheet2!C2` | — |

## related

- [AREAS](https://deepcalc.com/functions/areas.md) — returns the number of areas in a reference
- [HLOOKUP](https://deepcalc.com/functions/hlookup.md) — searches first row and returns matching value
- [HYPERLINK](https://deepcalc.com/functions/hyperlink.md) — the text a link displays — clickability is the renderer's
- [INDEX](https://deepcalc.com/functions/index.md) — returns value at row and column in range
- [INDIRECT](https://deepcalc.com/functions/indirect.md) — returns reference specified by text string
- [LOOKUP](https://deepcalc.com/functions/lookup.md) — looks up value in one-row or one-column range
- [MATCH](https://deepcalc.com/functions/match.md) — returns position of value in a range
- [OFFSET](https://deepcalc.com/functions/offset.md) — returns reference offset from starting point

## navigate

- [all lookup functions](https://deepcalc.com/functions/lookup-functions.md)
- [function index](https://deepcalc.com/functions.md) — all 600 functions
- [error values](https://deepcalc.com/errors.md) · [concepts](https://deepcalc.com/concepts.md) · [limits](https://deepcalc.com/limits.md)
- [everything in one file](https://deepcalc.com/llms-full.txt)

source: https://deepcalc.com/functions/address