macros in multiple worksheets

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

Guest

I want to link a macro in worksheet1 to a macro in
worksheet2 anyone know how? For instance if a checkbox in
sheet1 is true I want to disable the checkbox in sheet2
and vice versa.

thanks
 
Unless you have your macro is in worksheet code modules (and why would you?)
the macro applies to the workbook.

So you can run

Worksheets("Sheet2").Checkbox1.Enabled = False

If you are referring to control events, then the code is the same, just
invoked from the control event on Sheet1.

--

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