Running a macro with hidden sheets

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
I've just finished setting up my spreadsheet and starting hiding sheets that
users don't need to see, and I have a macro that no longer works since hiding
the sheet.
The code is:
Sheets("BINDING").Select
Is there any way I can still use this macro but hide the sheet?
 
Hi Jon,

You cannot select or activate the hidden object, but you can change the
sheets contents by code.
Just like:
Sheets("BINDING").Range("A1").Value = "TestValue"

Altough Sheets("BINDING") is hidden.
 

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