Do you mean AND or OR? We often use AND in everyday English when we really
mean a Boolean OR. Using AND here would return only those items which are
shipped from Denver to Denver because the value is the same in both columns.
That sounds less likely, so I think you probably want an OR, items shipped
from Denver or items shipped to Denver. So the query would be something like:
SELECT *
FROM [YourTable]
WHERE [From] = "Denver"
OR [To] = "Denver";
In query design view an OR operation is built when you include the value on
the first and second criteria row of the design grid respectively for each
column, e.g. you'd put "Denver" in the first criteria row of the From column
and in the second criteria row of the To column; or vice versa, the result is
the same.
Putting "Denver" in the first criteria row of both columns would build a
Boolean AND operation, i.e. items shipped from Denver to Denver.
Ken Sheridan
Stafford, England