Macro Sheets Only
Changes the title of the active window to the title you specify. The title appears at the top of the workbook window. Use WINDOW.TITLE to control window titles when you're using Microsoft Excel to create a custom application.
Syntax
WINDOW.TITLE(text)
Text is the title you want to assign to the window. If text is omitted, it is assumed to be the name of the workbook as it is stored on your disk. Empty text ("") specifies no title.
Important WINDOW.TITLE changes the name of the window, not the actual name of the workbook as it is stored on your disk. To change the name of the workbook, use the SAVE.AS function.
Remarks
Example
The following macro formula changes the title of the active window to First Quarter.
WINDOW.TITLE("First Quarter")
Related Function
APP.TITLE Changes the title of the application workspace
SAVE.AS Specifies a new filename, file type, protection password, or write-reservation password, or to create a backup file
List of Customizing Functions