R Rene Wennekes Feb 23, 2005 #1 I want to make a querie with a criteria to filter out only the records with text what begins with "192". How do I do that? Rene
I want to make a querie with a criteria to filter out only the records with text what begins with "192". How do I do that? Rene
T Tom Lake Feb 23, 2005 #2 Rene Wennekes said: I want to make a querie with a criteria to filter out only the records with text what begins with "192". How do I do that? Click to expand... In the Criteria row, specify Like "192*" Tom Lake
Rene Wennekes said: I want to make a querie with a criteria to filter out only the records with text what begins with "192". How do I do that? Click to expand... In the Criteria row, specify Like "192*" Tom Lake
V Van T. Dinh Feb 23, 2005 #3 The SQL String of your Query should be something like: SELECT [YourTable].* FROM [YourTable] WHERE [YourTable].[RelevantField] Like "192*"
The SQL String of your Query should be something like: SELECT [YourTable].* FROM [YourTable] WHERE [YourTable].[RelevantField] Like "192*"