Private Sub Worksheet_Change(ByVal Target As Range)
If (Target.Range="$C$3") And (Target.Range=$C$3) Then
Call Macro1(Target.Address(False, False), Target.Value)
End If
End Sub
I am trying it to detect changes made in cell C3 and D3 and if changes are made in both the cells only then call...