I cannot build properly a Select Case statement.What i want to do
is to make the following statements
Dim Customer as Control
set Customer = Forms![Frm1]![customerid]
Select Case Customer
Case Customer 123 or 9000 or 2600
If Me![Quantity] < 0 Then
Exit Sub
Else
perform a code
End If
End Select
However the Select Case does not work.What i want it to perform a code for all other customers, except 8 customers. So i should use a code of the type Not In or something like that, like . Also i want that if the field Quantity is 0, to end the action.I am sure there are better ways to do that. I will be very grateful for your advice.