Auto Review Toolbar

J

jeff

Does anyone know how to turn off the auto reviewing
toolbar function? Whenever I open a spreadsheet from
someone else the toolbar automatically pops up. It
happens in both Excel and Word and I just want to turn it
off. Thanks.
 
J

Jim Rech

I get enough of these files, Dave, that I've added a button to my custom
toolbars to facilitate dealing with them. FWIW:

Sub KillReviewingCustProps()
Dim x As DocumentProperties
Dim Counter As Integer
Set x = ActiveWorkbook.CustomDocumentProperties
For Counter = x.Count To 1 Step -1
If Left(x.Item(Counter).Name, 1) = "_" Then _
x.Item(Counter).Delete
Next
CommandBars("Reviewing").Visible = False
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top