Run Query from a Form

  • Thread starter Thread starter Jim
  • Start date Start date
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.
 
In your query criteria use something like this ---
[Forms]![YourFormName]![ComboName]
You can also use LIKE with it --
Like "*" & [Forms]![YourFormName]![ComboName] & "*"
 
Back
Top