I am starting to work on a project, and would appreciate some comments on my ‘game plan’ before I start coding.
I have two tables – tblCountry and tblDetails. I want to select all of the records in tblDetails that are associated with each record in tblCountry, and output each country in a separate Excel Workbook.
Is the best way to do this to have two recordsets and use a bookmark to select the record in tblCountry, then take the Country name into the second recordset using WHERE clauses? I would then return to the first recordset, advance by one, update the second recordset, then export to a new Excel Workbook.
Does this make sense, or is there a better way of doing it? I appreciate the help as my programming to date has been with a single recordset.
TIA.
Kiwi44