Expression Builder

C

CSkoog

I have a querie with many different states. I need to have it exclude two of
the states in the querie IE: AZ and MI.
 
K

Klatuu

In the critera row for your State column in the query builder, put this:
NOT IN("AZ", "MI")
 
Top