Get Sheet Name In Cell

Опубликовано: 05 Апрель 2026
на канале: Tech 'N' Play
149
11

Get Sheet Name In Cell #shorts #excel #exceltricks #msexcel #exceltips @tech-n-play ​🔥

FORMULA DETAILS:
To retrieve the name of the current sheet in Excel, you can use the CELL function along with the RIGHT, LEN & FIND functions.

This formula extracts the sheet name from the full file path and sheet name provided by the CELL function. Here's how it works:

The CELL("filename") function returns the full file path and sheet name of the current sheet.
The FIND("]", CELL("filename")) function finds the position of the closing bracket "]" in the file path.
The LEN(CELL("filename")) function returns the total length of the file path.
The RIGHT(CELL("filename"), LEN(CELL("filename")) - FIND("]", CELL("filename"))) function extracts the sheet name by removing the file path from the entire string.

After entering the formula, the sheet name of the current sheet will be displayed.

Please note that the formula may not work correctly if the workbook has not been saved or if it contains special characters in the file path.