On Wed, 10 Dec 2008 13:44:36 GMT, "mugziegumz via AccessMonster.com" <u47747[ at ]uwe> wrote:
[Quoted Text] >How do I create a query that will look up multiple invoices that start with >the number 5? When I type in criteria "5" nothing shows up even though I know >I have plenty.....thanks.
A criterion of "5" will show all invoices where the field is exactly equal to the text string "5".
To get "starting with" use the LIKE operator and the wildcard *, which matches any string: a criterion of
LIKE "5*"
--
John W. Vinson [MVP]
|