Hi everyone,
Is there a way to output multiple access reports to one single word file? I am able to output single report to .rtf without any problems by using the following code:
In all I have some 18 reports to output into a single Word file. I have tried using sub-reports which could solve the problem if there is no other solution, but was just wondering if the code above could be modified.
Thanks
Is there a way to output multiple access reports to one single word file? I am able to output single report to .rtf without any problems by using the following code:
Code:
Private Sub EditFinalsInWord_Click()
Dim strCurrentPath As String
strCurrentPath = Application.CurrentProject.Path & "\"
DoCmd.OutputTo acOutputReport, "Finals", acFormatRTF, Application.CurrentProject.Path & "\Finals\Finals_Data\Finals Programme.rtf", True
End Sub
In all I have some 18 reports to output into a single Word file. I have tried using sub-reports which could solve the problem if there is no other solution, but was just wondering if the code above could be modified.
Thanks