"Reviewing" toolbar

  • Thread starter Thread starter kjk
  • Start date Start date
K

kjk

Any way to disable the Reviewing toolbar that comes up
each time I open a new file? I don't use it and it just
reduces my spreadsheet viewing area. I went into Options
but can find nothing that keeps it from coming up
automatically.
 
Hi kjk

You can use this line in a macro to disable it
Application.CommandBars("Reviewing").Enabled = False
Set it to true to use it again

Or check out this from Jim Rech

From: Jim Rech ([email protected])
Subject: Re: Reviewing Toolbar
Newsgroups: microsoft.public.excel.misc
Date: 2003-01-09 04:22:21 PST


Actually I believe the annoying popup Reviewing toolbar is triggered by
certain custom file properties. Go into File, Properties and the Custom
tab. There you will probably find several custom properties that begin with
underscores (as I recall). If you delete them and save the workbook and
close the Reviewing toolbar, I think the next time you open the workbook the
toolbar will not appear.


And if you want a macro to clean this up, Jim posted this:
http://groups.google.com/[email protected]
 
Back
Top