select records

H

hamill2000

I want to automatically view (sort) certain records based upon 2-3 criteria
which exist in specific fields within a form. I have been using a command
button with various macro attempts, but with no success. The problem is
getting the procedure to automatically use the specific forms field data as
criteria?

I'm not a programmer and any ideas welcomed!
 
K

KARL DEWEY

Try this --
In the header of the form put unbound textbox, combox, or listbox to enter
or select the criteria. Add a command button to requery the query that is
the record source for the form.
In the query add criteria from each of the textbox, combox, or listbox from
the form header like --
Like "*" & [Forms]![YourFormName]![YourTextBox] & "*"

If you have entered 'be' in the textbox you will get Abe, Abel, Betty, Maybe.

If you do not use the leading or trailing wildcards you will limit what you
pull.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top