L L.A. Lawyer Dec 9, 2008 #1 I want to determine whether a specific string of letters exists in a field on the current field. How is that done?
I want to determine whether a specific string of letters exists in a field on the current field. How is that done?
D Douglas J. Steele Dec 9, 2008 #2 You can use LIKE for the criteria of a query: SELECT Field1 FROM Table1 WHERE Field1 LIKE "*Lawyer*" or you can use the InStr function.
You can use LIKE for the criteria of a query: SELECT Field1 FROM Table1 WHERE Field1 LIKE "*Lawyer*" or you can use the InStr function.