Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Address = "$D$11" Then
MsgBox Sell
End If
End Sub
Is there a way to stipulate multiple target addresses?
"$D$11" Or $G$11 Then... does not work.
|