Not too sure whatr you mean, I've been using the TrSpreadshehet method as follows. Do you mean linking the xls as a updatable sheet and running the query into the linked sheet?
Function ExportDaily()
DoCmd.SetWarnings True
DoCmd.Hourglass True
On err GoTo err:
Dim stExportFileName As String
stExportFileName = "H:\Mike Temp\Outputfiles\AccessOutputs.xls"
DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel97, "QDailyExport", stExportFileName, True, "OutputWks"
MsgBox "Export Done!"
exitcommand_Click:
DoCmd.SetWarnings True
DoCmd.Hourglass False
Exit Function
err:
MsgBox err.Description, vbOKOnly
DoCmd.CancelEvent