Phyllis
"Phyllis" <pkat...@sympatico.ca> wrote in message
news:33a201c34000$a4d9f130$a601...@phx.gbl...
>.
>
Phyllis
>.
>
The "*" character is what is known as a wilcard in that it will match one or
more of any characters in the string that it is entered.
For example, Ram* will give you 'Rambo', 'Rambus', etc. In your example,
Access thinks that "Jacket" is the start of the string, so it would find
"Jackets of Hell" but not "Full Metal Jacket".
IIRC putting a "*" before Jacket will give you movie titles containing the
string Jacket anywhere in the title.
E.g. "*Jacket*", will give you "Full Metal Jacket". Also, be aware of the
the space. "* Jacket *" is different to "*Jacket*".
You may also want to look up the '?' wilcard in Access help.
Hope this helps
Chris Strug
Insert this command as a criteria
Like '%' & [question] & '%' Rem "This is for Excell (MS-Query)
Like "*" & [question] & "*" Rem "This is for Access Query