RaptureReady
Registered User.
- Local time
- Today, 12:51
- Joined
- May 7, 2007
- Messages
- 30
Hey all, I am trying to write a me. statement that has more than one condition, is this possible?
Here is what I have, oh and btw I'm learning access if you could not tell...
:
Here is what I have, oh and btw I'm learning access if you could not tell...

Code:
Private Sub Product_LostFocus()
If Me.Product = "1" or "3" or "7" or "12" or "Large" Then
Me.stocked = True
Else
Me.stocked = False
End If
End Sub
[\code]
Thanks for the help.
RR