Reading a query with VBA

D

dhstein

I can open a recordset and read in a table to process the records. Is there
a way to open a query for reading? I'd like to use the results of a query to
process some specific records. Thanks for any help you can provide.
 
A

Arvin Meyer [MVP]

You can open a recordset and read in a query in the exact same way as a
table. You can also read in the Select statement, or create a querydef and
read that in.
 
Top