Help?

gbanks

Registered User.
Local time
Today, 17:43
Joined
Feb 9, 2000
Messages
161
Not sure what I am doing wrong with the statement below. It keeps giving me a debug error. I have this on a dropbox of a form. I want that when the user selects either of these that it will mark the fatal box as -1. What am I doing wrong? Thanks....





If Me.EventStatus = "Rescheduled\Makeup" Or "Unable to Proceed" Then Me.FatalProblem = -1
 
Runtime error 13 type mismatch. When I use just one say Unable to proceed it works great but when I added the or statement it gives me the error...
 
If Me.EventStatus = "Rescheduled\Makeup" Or Me.EventStatus = "Unable to Proceed" Then Me.FatalProblem = -1

^
 

Users who are viewing this thread

Back
Top Bottom