Hello,
My userform is not showing when I change a value in any cell in column DF. What am I doing wrong?
My code is as follows:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rangeToChange As Range
If Target = Range("DF:DF").Address Then
Load UserForm1
UserForm1.Show
End If
If Not Intersect(Target, Range("DF:DF")) Is Nothing Then
End If
End Sub
My userform is not showing when I change a value in any cell in column DF. What am I doing wrong?
My code is as follows:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim rangeToChange As Range
If Target = Range("DF:DF").Address Then
Load UserForm1
UserForm1.Show
End If
If Not Intersect(Target, Range("DF:DF")) Is Nothing Then
End If
End Sub