George-Bowyer
Registered User.
- Local time
- Today, 23:34
- Joined
- Dec 21, 2012
- Messages
- 178
I have a form that allows the user to appoint members to various positions in a club.
If the position is of a certain type, then I want the code to do certain things.
For some reason, the code is running regardless of the position
This is the relevant nugget from the beginning of a very long If clause.
It seems to me that the msgbox should only come up if intPosition is 5 or 55.
but it's popping up regardless of the number.
How?
I am confused. This seems really basic level stuff that doesn't seem to be working
If the position is of a certain type, then I want the code to do certain things.
For some reason, the code is running regardless of the position
This is the relevant nugget from the beginning of a very long If clause.
Code:
If intPosition = 5 Or 55 Then
MsgBox intPosition
Exit Sub
It seems to me that the msgbox should only come up if intPosition is 5 or 55.
but it's popping up regardless of the number.
How?
I am confused. This seems really basic level stuff that doesn't seem to be working