Hi,
Make a table with one field, two records, one with the numerical value 18,
one with 88. Add more records if more values are desired, without duplicated
values.
Use an inner join to make the intersection:
SELECT myTable.*
FROM myTable INNER JOIN previousTable
ON myTable.FieldName = previousTable.itsFieldName
That is probably one of the most versatile solution that can handle a lot of
records (if you add an index) too.
Hoping it may help,
Vanderghast, Access MVP