Sub HideAll() ' Hide the Horizontal Scroll Bar ActiveWindow.DisplayHorizontalScrollBar = False ' Hide the Vertical Scroll Bar ActiveWindow.DisplayVerticalScrollBar = False ' Hide the Row/Column Headings ActiveWindow.DisplayHeadings = False ' Hide the Worksheet Tabs ActiveWindow.DisplayWorkbookTabs = False ' Hide the Status Bar (bottom of the window) Application.DisplayStatusBar = False ' Hide the Formula Bar Application.DisplayFormulaBar = False ' Hide the Ribbon Menu and Quick Access Toolbar Application.ExecuteExcel4Macro "show.toolbar(""Ribbon"",False)" End Sub Sub ShowAll() ' Show the Horizontal Scroll Bar ActiveWindow.DisplayHorizontalScrollBar = True ' Show the Vertical Scroll Bar ActiveWindow.DisplayVerticalScrollBar = True ' Show the Row/Column Headings ActiveWindow.DisplayHeadings = True ' Show the Worksheet Tabs ActiveWindow.DisplayWorkbookTabs = True ' Show the Status Bar (bottom of the window) Application.DisplayStatusBar = True ' Show the Formula Bar Application.DisplayFormulaBar = True ' Show the Ribbon Menu and Quick Access Toolbar Application.ExecuteExcel4Macro "show.toolbar(""Ribbon"",True)" End Sub