Using worksheet_change

G

Guest

I have successfuly implemented worksheet_change to perform some actions
(clearcontents on various ranges) on the worksheet in question.

However, when I attempted to perform the same actions in ANOTHER worksheet,
based on the same event, the code halted.

I suspect that worksheet_change can't launch actions in other sheets, but I
am not sure. In the end, I am trying to find a way to launch actions on this
other worksheet...biggest barrier is that nothing changes on that other
worksheet itself, all changes are the results of formulas linked to the
original cell that is changing.

For example...is there a workbook_change feature that would allow it? I
cannot find any syntax references anywheere...

Thanks for any help,
Tom
 
G

Guest

In the thisworkbook module:

Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)

End Sub
 
G

Guest

Worked perfectly...thanks for the assistance, this site is so helpful to
non-programmers lime me trying to get by.
 

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

Top