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