Hello Jim,
Sorry I've been trying to get this thing to work but I just can't do it.
Basically, I have formulas in c4,d4,e4 which affect f4. If there are any changes to f4 to f154, call a macro.
The code below kind of works but if I make changes in g4 or anywhere on the wrksht, the macro is called.
Please ignore the remarks stmts as I was experimenting.
AARRGH!! Any other suggestions.
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rng As Range
'Set rng = Range("f4:f154")
'If Union(Target, rng).Address = rng.Address Then
'If Union(Target, [F4:F154]).Address = [F4:F154].Address Then
'If Intersect(Target, Range("F4:F154")) Is Nothing Then
If Target = [f4] Then
Exit Sub
Else
Call Update_x_and_Media
End If
End Sub