WorkBook_SheetChange for non-Active worksheet

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

Guest

Hi All,
I have a question to which I hope the answer isn't painfully obvious to
anyone who is not an amatuer as myself.

I'm using the SheetChange property for my workbook as discussed in other
threads here and I'm trying to use it on a non-active worksheet.

I have a combo box with "Yes" or "No" as the available selections that is
linked to a cell on a seperate "tables" sheet. I am currently using the
SheetChange sub to monitor the changes to this linked cell and run a few
basic IF statements when they are indeed changed. The code works perfectly
when the "tables" sheet is active, but it will not run if the cell is changed
through the combo box on the "main" sheet.
Is there a way to have the WorksheetChange run even when a worksheet is not
active?

Thanks in advance to anyone who might offer a little advice!
 
The worksheet_Change event will fire if you make a change (typing!) to a cell.

But it won't fire if that change is the result of a formula being reevaluated.

Maybe you should be looking at the worksheet_calculate event.
 

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