parameter query into a text field

V

vassilis

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

krisworld

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..
 
V

vassilis

The text field appears some importants notes and i dont think its a good
idea...
i ve tried the Like *[something]* and doesnt work.
 
D

Duane Hookom

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.
 
Top