Hi,
I need to fire a code when a cell in a range of J3:J1000 <> "" then fire code.
What I've tried to do is this bit of code however msgbox never shows even when I populate a cell in J.
I need to fire a code when a cell in a range of J3:J1000 <> "" then fire code.
What I've tried to do is this bit of code however msgbox never shows even when I populate a cell in J.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("J3:J1000")) Is Nothing Then Exit Sub
If Range(Target.Address).Value <> "" Then MsgBox "Correct"
End Sub