-
Query Database inverse
Using a Data control after I have query a the database, how do I select the inverse records.
By Inverse record I mean the recordes that where not included.
Example:
After querying for a city like= "chicago"
I need to view in that data base the records that are not from chicago..
-
you'll need a new query on the DB.
in the query, change all AND's to OR's, all OR's to AND's and then either
- change all = to <> (and visa versa), all > to <= (and visa versa) and all < to >= (and visa versa).
OR
- place NOT in front of each comparitive operator.