I would like to hide the heading, gridlines, and tabs on the entire workbook. I currently can only hide these on the first activewindow that appears on workbook open. My current code is:
Application.DisplayFormulaBar = False
ActiveWindow.DisplayWorkbookTabs = False
ActiveWindow.DisplayHeadings = False
ActiveWindow.DisplayGridlines = False
I had thought that simply replacing the activewindow with application would do the trick, but it does not. I would like this to occur on the initial workbook open event. Thanks in advance.
Bookmarks