Absolutely. Just use the TransferText method to export your data. Specify
the same Excel file and each query will get exported to a separate tab.
You can do it in a macro or in VBA:
DoCmd.TransferSpreadsheet acExport, 8, "Query1", "C:\MySpreadsheet",
True, ""
DoCmd.TransferSpreadsheet acExport, 8, "Query2", "C:\MySpreadsheet",
True, ""
DoCmd.TransferSpreadsheet acExport, 8, "Query3", "C:\MySpreadsheet",
True, ""
I am trying to do the same thing, but when I have multiple rows, it'll only
do the first one.
I have 18 queries and I want them to dump their information into a single
spreadsheet. So far it will only do the first one and not the others.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.