parameter query into a text field

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi
how i can find specific words into a text field using a parameter , i want
everytime to looking for different words .
thanks
 
hi
how i can find specific words into a text field using a parameter , i want
everytime to looking for different words .
thanks

may be u need to split the whole text field data, and then search for
the target string...
I dont know will this help..
 
The text field appears some importants notes and i dont think its a good
idea...
i ve tried the Like *[something]* and doesnt work.
 
You should be able to set the criteria to something like:
Like "*" & [Text To Find] & "*"

You should consider using criteria values from controls on forms rather than
parameter prompts.
 
Back
Top