matrixindicator
IS-IT--Management
Code:
Dim strDir As String
strDir = "D:\2008\MailReportTemp"
DoCmd.SetWarnings False
DoCmd.OutputTo acOutputQuery, "Query1Total", acFormatRTF, strDir & "\" & "MailBody.doc"
DoCmd.OutputTo acOutputQuery, "Query1Detail", acFormatRTF, strDir & "\" & "MailBody.doc"
I can not append two queries in one document ?
I have few queries that I need to paste it in one document.
In this case he produce two reports.
I thought I could use write to file, but then I lose the format of my query. How can I easily solve this ?