How can I turn off the Reviewing toolbar so that it doesn't come up every time I open Excel? I've looked under Options, nothing there. I've tried using the View:Toolbars:Customize but it doesn't stay. Do I need to create a startup template?
How can I turn off the Reviewing toolbar so that it doesn't come up every time I open Excel? I've looked under Options, nothing there. I've tried using the View:Toolbars:Customize but it doesn't stay. Do I need to create a startup template?
Hi,
Try this VBA code
Open a new workbook
Alt-F11
Insert>Module from the menubar
paste the sub in there
Alt-Q to go back to Excel
If you do Alt-F8 you get a list of your macro's
Select "test" and press Run
Sub test()
Application.CommandBars("Reviewing").Enabled = False
End Sub
Close the workbook (don't save it)
VBA Noob
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks