query I did not explaine correctly

  • Thread starter Thread starter Dawn
  • Start date Start date
D

Dawn

I am using a query to find records, I need to find one
field but within the field of Nations I need to only find
the ones that start with A or S and nothing else. I am
not correctly entering the information to find this out
Please help.
thank you
Dawn
 
Put a criterion expression similar to this in the query for the field
Nations:

Like "[as]*"
 
Back
Top