I am trying to save reports in a .rtf format. I am reading
in a table containing different territory designations. I
then take the territory value for each row and run a report
against that value using code similar to the following:
Dim x As String
x = 1
Do While x < 4
DoCmd.OpenReport "ReportName", acNormal, , "lognumber = " & x
x = x + 1
Loop
This code works fine and sends a seperate report for each
territory to the printer. However, I was wondering if there
is a way to create a .rtf file with a different name for each report to disk file instead of printing a report?
Any help would be appreciated.
in a table containing different territory designations. I
then take the territory value for each row and run a report
against that value using code similar to the following:
Dim x As String
x = 1
Do While x < 4
DoCmd.OpenReport "ReportName", acNormal, , "lognumber = " & x
x = x + 1
Loop
This code works fine and sends a seperate report for each
territory to the printer. However, I was wondering if there
is a way to create a .rtf file with a different name for each report to disk file instead of printing a report?
Any help would be appreciated.