M
markmarko
After creating a report that summarizes a handful of orders, I'd like to make
a change to a certain field in those orders, and no others.
Originally, I was making the report based on a form (Sales Orders), so user
filtered the form (ala Allen Brown's method of changing the recordsource, not
actually a filter), and my VBZ would clone that forms recordset.
Now, I'm using a standalone form for the user to select the orders they
want, and it opens the report using those criteria as the filter (using the
filter property).
I need to now clone that reports recordset in order to apply that change to
each of those jobs. But my code errors out on this line...
Set rs = [Reports]![Qualifying].Recordset.Clone
The error message is "this feature is only available in ADP"
Any idea how I can clone a reports recordset in order to maniplulate the
records?
a change to a certain field in those orders, and no others.
Originally, I was making the report based on a form (Sales Orders), so user
filtered the form (ala Allen Brown's method of changing the recordsource, not
actually a filter), and my VBZ would clone that forms recordset.
Now, I'm using a standalone form for the user to select the orders they
want, and it opens the report using those criteria as the filter (using the
filter property).
I need to now clone that reports recordset in order to apply that change to
each of those jobs. But my code errors out on this line...
Set rs = [Reports]![Qualifying].Recordset.Clone
The error message is "this feature is only available in ADP"
Any idea how I can clone a reports recordset in order to maniplulate the
records?