Manipulating Excel Application Bar text

fprzekop

Board Regular
Joined
Jun 25, 2002
Messages
74
Is there any way to change the text in the Excel menu bar? Currently it shows "Microsoft Excel - filename.xls" and I would like it to display a text string stored in a cell in my workbook. I can use the status bar, but am using it for other purposes.

Any assistance appreciated.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
This gets the current window caption and holds it, then it is changed. The MsgBox is to pause the code so you can see the change. Then the Old caption is put back, before the code exit.



Sub myCap()
Dim myOldCap$

Sheets("Sheet1").Select
myOldCap = ActiveWindow.Caption
ActiveWindow.Caption = "This is a test!"

MsgBox "The active window caption is: " & vbLf & ActiveWindow.Caption & vbLf & _
vbLf & "The old window caption was: " & vbLf & myOldCap

ActiveWindow.Caption = myOldCap

End Sub
 
Upvote 0

Forum statistics

Threads
1,214,647
Messages
6,120,722
Members
448,987
Latest member
marion_davis

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top