Disable/Turn off

  • Thread starter Thread starter Pete
  • Start date Start date
P

Pete

Is there a way to not display the formula bar on a active
workbook without making the change global for all
spreadsheets in the future.

Also how can I Gray out the standard tool bars that are
open in the workbook so no one can use any reformatting or
copy/pasting buttons on the spreadsheet I created.

Any insight is appreciated.

Thanks
Pete
 
Hi Pete,

Add this code to that workbook

Sub Auto_Open()
Application.DisplayFormulaBar = False
End Sub

Sub Auto_Close()
Application.DisplayFormulaBar = True
End Sub

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 

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

Back
Top