I would think that you would need to use OR criteria. The value in the
field is 250 or 350 or 550 or 750.
If the field is a number field you could use
Field: Models
Criteria: In (250,350,550,750)
If text you have a couple of alternatives
Field: Models
Criteria: In ("250","350","550","750")
Or with those specific numbers in a text field
Field: Models
Criteria: Like "[2357]50"
Or
Field: Models
Criteria (Line 1): 250
Criteria (Line 2): 350
Criteria (Line 3): 550
Criteria (Line 4): 750
'====================================================
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
'====================================================
I'm trying to find models 250, 350, 550 and 750 by using "And" criteria. It
seems to only work with two of the four.
Any help would be appreciate.
JW