Multiple Worksheet Change events

winspear

New Member
Joined
Aug 6, 2009
Messages
12
Hi

I need two worksheet change events in a worksheet

This is what I have so far (code tested and works fine) ...

Private Sub Worksheet_Change(ByVal Target As Range)

Dim Answer As String

Set isect = Application.Intersect(Target, Range("designStatus"))

If Not isect Is Nothing Then

[code here]

End Sub

However, I need another worksheet change event added for when an unrelated cell changes - this would run different code.

Can this be done?

Thanks
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
You can only have one Change eventhandler per sheet. You will need to add code to determine which type of cell it is and act accordingly.
Basically add an 'If Then ... ElseIf Then ... Endif' structure around the whole. Your first condition could be the intersect you have now, if that is not applicable, add a second condition (e.g. Target.Column=value), etc...
 
Upvote 0

Forum statistics

Threads
1,216,101
Messages
6,128,840
Members
449,471
Latest member
lachbee

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top