Message Box

thedeadzeds

New member
Joined
Oct 25, 2011
Messages
37
Reaction score
0
Points
0
Excel Version(s)
2016
Hi guys,

is there a way to have a message box appear based on 2 options.

If the cell text equals "up" or "down" then a message box appears showing 'ensure you complete section 8'.

Thanks
 
Code:
If ACtivecell.Value = "up" Or Acrivecell.Value = "down" Then

    MsgBox "Ensure that you complete section 8", vbokonly,"Incomplete "Data"
End If
 
Back
Top