try using % as your wildcard character. ADO uses a different one than
Access.
> try using % as your wildcard character. ADO uses a different one than
> Access.
Thanks Pietlinden. I found what the problem is but I don't know how to fix
it. Here is my sql statement again:
SELECT tblFilter_Subject.strPhrase
FROM tblFilter_Subject
WHERE ((('VALíUMM') Like '%' & [strPhrase] & '%'));
Some of the data in strPhrase has open square brackets in it! Took me for
bleedin' ever to find that... so the next question is... how to escape an
open bracket in the situation above??
EB