How can i construct properly the Select Case Clause?
The table size contains the following sizes : 1,3,4,20,60,200
I want to do something if size = 1 and else if size is not 1.
I cannot write Case Is size = 1. And if write Case = 1 then nothing happens
Dim size as control
Set size = [Forms]![Main]![Subform].[Form].[size]
Select Case size
Case is Size = 1
...
Case Else
...
End Select
I will be much grateful for the help



