query using criteria

D

Duane Hookom

The same way that you would use one criteria. The only complexity might be
if you want to use ANDs or ORs in your criteria.
 
K

Ken Snell [MVP]

By listing each separately in the WHERE clause:

WHERE [Field1] = "Value1" And [Field2] = "Value2" And ....

etc.

Or, use Or for logic of accepting any of the choices. Or, use various
combinations with parentheses to get more complex logic results.
 
Top