Thanks Tim & Jim.
I'm sorry for not making clear in the first place, I think I tried to
generalise too much, so I'm going to be more specify.
My situation is this:
Sheet A: Various option (3 main options)
Sheet B: Input data
Sheet C: Gather total value from Sheet B (via direct link)
Sheet D: Dumping area(Stored constant, like which options been selected on
sheet A)
My problem is that only one of the options on SheetA require me to monitor
some range on Sheet C. While the other two options doesn't require this event.
This way I would like to know is there way to target a specify sheet only. I
have tried with the following scenario:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
''''''''''Monitor A6
Dim VRange As Range
Set VRange = Me.Range(Me.Range("Quantities12").cells(1, 1),
Me.Range("Quantities15").cells(1, 1))
'''''this has been seperated to speed up code'''''
If Sheet9.Range("A6").Value <> bytJob Then
Exit Sub
End If
If Union(Target, VRange).Address <> VRange.Address Then
Exit Sub
End If
etc.....
My main concern is that at our company people have a tendency to open at
least 5 windows at one time, with the Worksheet_Change, this might used up
more computer resource then necessary.
So, does anyon have any suggestion?
Thanks
Augustus