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

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
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,596
Messages
6,120,438
Members
448,966
Latest member
DannyC96

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