hartless43
New Member
- Joined
- Dec 28, 2022
- Messages
- 29
- Office Version
- 365
- Platform
- Windows
Ok, I give up, so asking the experts. How do you call a UserForm based on a cell value from the WorkSheet_Change. Below is the one that want work.
Thanks from an old man
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("K14")) Is Nothing Then
If Target.Value = 42 Then
MG42.Show
End If
End If
End Sub
Thanks from an old man