Dapatkan nomor indeks lembar
=SHEET([value])
| Parameter | Deskripsi |
|---|---|
value |
[optional] The value to check. |
For example, in a workbook with Sheet1, Sheet2, and Sheet3 running left to right:
=SHEET(Sheet1!A1) // returns 1
=SHEET(Sheet2!A1) // returns 2
=SHEET(Sheet3!A1) // returns 3
If Sheet2 is dragged all the way to the left, a reference to A1 on Sheet2 will return 1:
=SHEET(Sheet2!A1) // returns 1
SHEET can report the sheet number for a cell reference, named range, or Excel Table. For example, if a table called "Table1" exists on the third sheet
=SHEET(Table1) // returns 3