Buat alamat sel dari nomor baris dan kolom
=ADDRESS(row_num, col_num, [abs_num], [a1], [sheet])
| Parameter | Deskripsi |
|---|---|
row_num |
The row number to use in the cell address. |
col_num |
The column number to use in the cell address. |
abs_num |
[optional] The address type (i.e. absolute, relative). Defaults to absolute. |
a1 |
[optional] The reference style, A1 vs R1C1. Defaults to A1 style. |
sheet |
[optional] The name of the worksheet to use. Defaults to current sheet. |
Use ADDRESS to create an address from a given row and column number. For example:
=ADDRESS(1,1) // returns $A$1
=ADDRESS(1,1,4) // returns A1
=ADDRESS(100,26,4) // returns Z100
=ADDRESS(1,1,1,FALSE) // R1C1
=ADDRESS(1,1,4,TRUE,"Sheet1") // returns Sheet1!A1