Here is my code:
The debuger pointed at "Personnel_form.Show". It's to show my userform.
Would appreciate your help. Thanks
VBA Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$E$70" Then
If Me.Range("E70") = "Yes" Then
If Me.Range("E9") = "" Then
MsgBox "Please enter school ID at the start of the form to continue"
Me.Range("E70") = ""
Else
Personnel_form.Show
End If
End If
End If
End sub
The debuger pointed at "Personnel_form.Show". It's to show my userform.
Would appreciate your help. Thanks