Paramater type query

  • Thread starter Thread starter JGarcia2k32000
  • Start date Start date
J

JGarcia2k32000

Guest
I have a column in my table that has anywhere between 100-200 characters. What I'm trying to do is like a parameter query where the user prompts in what they are searching for, (Example, find "Washington, George"). What I need displayeds is all the instances of that name in that column.

Thanks,
Juan
 
Try using the LIKE operator.

Criteria: LIKE "*" & [SearchString] & "*"

Hope this helps,
Jeff
 
Like a glove man, thanks
 

Users who are viewing this thread

Back
Top Bottom