They should work.
Field: SomeFIeld
Criteria: Like [Find what?]
If you enter *MA* in response to the prompt you should get all records where
SomeField contains "MA" someplace in the string.
If you want to avoid entering the wildcards, then you will need to concatenate
them onto your response. For instance, the following for a contains search:
Field: SomeField
Criteria: Like "*" & [Find what?] & "*"
John Spencer
Access MVP 2002-2005, 2007-2008
The Hilltop Institute
University of Maryland Baltimore County
Is there any way to get wildcards to work in a parameter querry? I can get
them to work in normal select querries, but not in parameter ones.
Any help would be appreciated.