nc_waggoner
New Member
- Joined
- Sep 2, 2016
- Messages
- 21
I have a file with drop downs. The goal is to remind users to enter a response in column K (root cause) if the option "Employee Error" is chosen from the drop down in column H (Cause). How do I make a message box appear saying "Please enter a root cause" once a user chooses "Employee Error" in the drop down? I have tried:
Sub RootCause()
IF ActiveCell.Value = "Employee Error" Then
MsgBox ("Please enter a root cause")
End If
End Sub
However, the message box will not pop up. Thanks for the help!
Sub RootCause()
IF ActiveCell.Value = "Employee Error" Then
MsgBox ("Please enter a root cause")
End If
End Sub
However, the message box will not pop up. Thanks for the help!