Delete or hide the title bar of Excel 2007 / 2010 / 2013

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
you could check out the post put


  • HIDE TITLE BAR For EXCEL 2007 ???

in the search box.

However I prefer to put this following which can removes everything if you change True to False and False to True have a play. You probably can work what does what by the code name Application.**********

Note this doesn't disable the mouse right click option that another question


Put this under ThisWorkbook

Private Sub Workbook_Open()

Application.ExecuteExcel4Macro "SHOW.TOOLBAR(""Ribbon"",True)"
Application.DisplayFullScreen = False
Application.DisplayStatusBar = True
Application.DisplayFormulaBar = True
ActiveWindow.DisplayHeadings = True
ActiveWindow.DisplayHorizontalScrollBar = True
ActiveWindow.DisplayVerticalScrollBar = True
ActiveWindow.DisplayGridlines = True
Application.ErrorCheckingOptions.BackgroundChecking = True
Application.CommandBars("Status Bar").Visible = True
ActiveWindow.WindowState = xlNormal
ActiveWindow.DisplayWorkbookTabs = True
Application.ScreenUpdating = True
End Sub

Cheers
 
Upvote 0
Hello!


Sorry for insisting but the title bar remains visible.
Look at the picture.

Title%20Bar.jpg



Thank you!
Ivair CLaudio Ferrari
 
Upvote 0
Hello!


Sorry for insisting but the title bar remains visible.
Look at the picture.

Title%20Bar.jpg



Thank you!
Ivair CLaudio Ferrari

Unfortunately the picture doesn't show and just to be sure in the code I sent you did change the True to False and the False to True ? Otherwise nothing will happen.

Cheers
 
Upvote 0

Forum statistics

Threads
1,216,082
Messages
6,128,716
Members
449,464
Latest member
againofsoul

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