Как пользоваться функцией ADDRESS в Excel

Русский Английский
АДРЕС ADDRESS

The ADDRESS function in Excel and Google Sheets returns a cell»s address as a text string, using the specified row and column numbers.

Syntax

The syntax for the ADDRESS function is:

ADDRESS(row_num, column_num, [abs_num], [a1], [sheet_text])
  • row_num — The number of the row for which you want to obtain the address.
  • column_num — The number of the column for which you want to obtain the address.
  • abs_num (optional) — Specifies the type of reference. 1 = Absolute reference ($A$1), 2 = Mixed reference, column absolute ($A1), 3 = Mixed reference, row absolute (A$1), 4 = Relative reference (A1). The default is 1.
  • a1 (optional) — A logical value that specifies the reference style: TRUE (or 1) for A1 style, FALSE (or 0) for R1C1 style. The default is TRUE.
  • sheet_text (optional) — The text that identifies the sheet where the cell is located. By default, it returns the address on the active sheet.

Usage Examples

Example 1. Getting a cell»s address in A1 format:

A B C
1 10 20 =ADDRESS(1, 2)

The result of the function =ADDRESS(1, 2) in cell C1 will be $B$1, as it returns an absolute reference in A1 format.

Example 2. Getting a cell»s address in R1C1 format:

A B C
1 10 20 =ADDRESS(1, 2, 1, FALSE)

The result of the function =ADDRESS(1, 2, 1, FALSE) in cell C1 will be R1C2, as it returns an absolute reference in R1C1 format.

The ADDRESS function is particularly useful for creating dynamic formulas where cell references need to be adjusted based on specific conditions.

https://support.microsoft.com/ru-ru/office/адрес-функция-адрес-d0c26c0d-3991-446b-8de4-ab46431d4f89
Другие функции
Возвращает относительное положение элемента в массиве или диапазоне ячеек
Ищет значение в первом столбце массива и возвращает значение из ячейки в найденной строке и указанном столбце
Выполняет поиск в диапазоне или массиве и возвращает элемент, соответствующий первому совпадению Если совпадения не существует, то она может вернуть наиболее близкое (приблизительное) совпадение