Like problem

C

Chris

Hi

In my query I want to search all the Phone number where
there is a value that the user enter in a text box :
So that what I'm using in the criteria field :

Tel like Comme (*[forms]![FrmSearchContact].[form].
[txtNumTel].value*)

But it's not working I test

Tel like Comme "*26*" : the results was all the value of
the query

so I change the 26 by the forms value but it's not working

any help please
 
D

Dave

Try This:

Tel like Comme ('*' + [forms]![FrmSearchContact].[form].[txtNumTel].value + '*')
 
D

Dave

Try This:

Tel like Comme ('*' + [forms]![FrmSearchContact].[form].[txtNumTel].value + '*')
 
D

Dave

Try This:

Tel like Comme ('*' + [forms]![FrmSearchContact].[form].[txtNumTel].value + '*')
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top