Dapatkan nomor baris referensi
=ROW([reference])
| Parameter | Deskripsi |
|---|---|
reference |
[optional] A reference to a cell or range of cells. |
With a single cell reference, ROW returns the associated row number:
=ROW(A1) // returns 1
=ROW(E3) // returns 3
When a reference is not provided, ROW returns the row number of the cell the formula resides in. For example, if the following formula is entered in c
=ROW() // returns 6 in D6
When ROW is given a range, it returns the row numbers for that range:
=ROW(E4:G6) // returns {4,5,6}
To get Excel 365 to return a single value, you can use the implicit intersection operator (@):
=@ROW(E4:G6) // returns 4