
June 23rd, 2003, 09:19 AM
|
|
Junior Member
|
|
Join Date: Jun 2003
Location: Allen Park, Michigan
Posts: 6
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Access Wildcard Help
Alrighty I've looked through the archives but didn't see this, forgive me if I just plain missed it.
I'm trying to just do a query in access which searches a column for the string entered (user inputted upon execution). I've got that much done. However, it will only match it exactly to what you've typed. I want it to have a wildcard before and after whatever the user has inputted.
WHERE ((([Application Information].TxtAppName) Like [Enter Application Name] ));
thats my where clause right now. I've tried something like
WHERE ((([Application Information].TxtAppName) Like %[Enter Application Name]% ));
but that doesn't work. I'm still a newbie to access query syntax so forgive the simple question.
Thanks in advance.
|