Run Query from a Form

J

Jim

Is it possible to run a query or open a "Make Table" from a form? I am new to
ACCESS, and I would like to use a COMBO or LIST box to select the search
parameter data, but I haven't seen this information in any of the books I
have access to.
 
K

KARL DEWEY

In your query criteria use something like this ---
[Forms]![YourFormName]![ComboName]
You can also use LIKE with it --
Like "*" & [Forms]![YourFormName]![ComboName] & "*"
 
Top