How to keep web tool bar turned off in Excel-It keeps reappearing

  • Thread starter Thread starter Dennu
  • Start date Start date
D

Dennu

I keep clicking the web tool bar off, but it keeps reappearing when I go back
and forth from the same files that I have opened and have clicked the web
toolbar off
 
If you never use that toolbar, you could just enter a command from the VBE
immediate window:

Hit alt-f11
hit ctrl-g
type this and hit enter:
Application.CommandBars("web").Enabled = False
And close this window and try it out.

Change False to True when you decide you want it back.
 
Back
Top