Newbie: How to rename the application window label

F

Frank Krogh

How do I rename the excel application window label "Microsoft Excel -
<current workbook name>" ?

FK
 
P

Peo Sjoblom

To add to what Frank said you might want to put that line in a workbook open
macro

Private Sub Workbook_Open()
Application.Caption = "TzarDregevj"
End Sub
 
Top