User will make choices from multiple drop-down lists of variables with the capability of making more than one choice from each list. Can this be done without using vb or sql. If not, what would be the best way to do it using SQL and not vb
Create a report from user entry.
Collapse
X
-
Tags: None
-
A report needs a "fixed" recordset. Only by code you can manipulate this.
A fixed recordset indicates a fixed query (SQL) statement.
The only "codefree" solution is to instruct the user to create a select query from your table (or another basic report query you made for him) and let him fire with that the report wizard.
Nic;o)
Comment