hide sheets while running a macro

  • Thread starter Thread starter mbdevent
  • Start date Start date
M

mbdevent

Hi,

I made a workbook with some sheets, on the first sheet, the user ca
fill in a form and then execute a macro. The macro uses informatio
from other sheets. I don't want the user to see the use of the sheet
(espacially the changing of sheets is very annoying for the user). Doe
anyone know a script to add in to the macro so the user won't see th
other sheets?

Thanks,
Matth
 
Application.ScreenUpdating = False
'' Code here
Application.ScreenUpdating = True

--
Regards
Andy Wiggins
www.BygSoftware.com
Home of "Save and BackUp",
"The Excel Auditor" and "Byg Tools for VBA"
 

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