G Guest May 13, 2005 #1 How do I use the Like operator in parametric queries which prompt the user to enter part of the value for a field?
How do I use the Like operator in parametric queries which prompt the user to enter part of the value for a field?
F fredg May 13, 2005 #3 How do I use the Like operator in parametric queries which prompt the user to enter part of the value for a field? Click to expand... To find records with the entered value anywhere in the field: Like "*" & [Enter phrase] & "*" To find records with the entered value only at the end of the field: Like "*" & [Enter phrase] To find records with the entered value only at the beginning of the field: Like [Enter phrase] & "*"
How do I use the Like operator in parametric queries which prompt the user to enter part of the value for a field? Click to expand... To find records with the entered value anywhere in the field: Like "*" & [Enter phrase] & "*" To find records with the entered value only at the end of the field: Like "*" & [Enter phrase] To find records with the entered value only at the beginning of the field: Like [Enter phrase] & "*"