Hello does anyone know of a parameter query which can look for a match to any or all of the characters typed in. at the moment i use the query Like [First few letters of Title] & "*"
This seems to oonly be useful for looking up names etc. Any ideas?
I WAS GIVEN THE FOLLOWING:
DEK25 (Programmer) Nov 24, 2002
try LEFT([FieldName],[Length]) or try MID() and RIGHT
lhite (TechnicalUser) Nov 25, 2002
In the query's criteria type:
Like "*" & [FieldValue] & "*"
Thus, if the field is a last name field and the user types in "Smith" it will return Smith, Smith-Jones, Walker-Smith, etc.
-Larry
I have tried these but the first gives me the same results that i had with my first query Like [First few letters of Title] & "*" While the second doesn't work.
This seems to oonly be useful for looking up names etc. Any ideas?
I WAS GIVEN THE FOLLOWING:
DEK25 (Programmer) Nov 24, 2002
try LEFT([FieldName],[Length]) or try MID() and RIGHT
lhite (TechnicalUser) Nov 25, 2002
In the query's criteria type:
Like "*" & [FieldValue] & "*"
Thus, if the field is a last name field and the user types in "Smith" it will return Smith, Smith-Jones, Walker-Smith, etc.
-Larry
I have tried these but the first gives me the same results that i had with my first query Like [First few letters of Title] & "*" While the second doesn't work.