SHEET function in Google Sheets
Returns the sheet number of the specified sheet or other reference. .
=SHEET(value)SHEET syntax and parameters
One argument, zero required.
- valueanyOptional
[ OPTIONAL ] - The value to be verified as a sheet name or other reference. If you don’t include an argument, the function will return the sheet number of the sheet where the formula is located.
SHEET examples
Formulas you'll actually reuse.
The position of the current tab in the workbook:
=SHEET()Result
3The position of a tab by name — handy for tab-order checks:
=SHEET("Budget")Result
2
SHEET in Excel
Same name — your formula ports as-is.
Try SHEET in the playground
Edit the example — nothing to install.
Preloaded with the SHEET formula from Example 1 — change anything and watch it respond.
SHEET errors
What they mean — and the fixes.
#N/ANo sheet has that name, or the reference isn't valid — names are case-insensitive but must otherwise match exactly.
Related functions
More ways Google Sheets gets this done.
- ADDRESSReturns a cell reference as a string.LookupExcel
- CHOOSEReturns an element from a list of choices based on index.LookupExcel
- COLUMNReturns the column number of a specified cell, with `A=1`.LookupExcel
- COLUMNSReturns the number of columns in a specified array or range.LookupExcel
- FORMULATEXTReturns the formula as a string. .LookupExcel
- GETPIVOTDATAExtracts an aggregated value from a pivot table that corresponds to the specified row and column headings.LookupExcel