Export the query result to Excel. You can do this manually, in a Macro (TransferSpreadsheet action) or in VBA (docmd.transferspreadheet method).
VBA syntax:
DoCmd.TransferSpreadsheet [transfertype][, spreadsheettype], tablename, filename[, hasfieldnames][, range]
VBA example:
DoCmd.TransferSpreadsheet acExport, 8, "qrySales", "c:\export\excel\Sales.xls" Terry L. Broadbent
faq183-874 contains some tips and ideas for posting questions in these forums. Please review it if you have time.