I have an Access report that is populated by a parameter query. I need to run the report for 250 different filters then save. How do I write a code that will run the report then save it as pdf250 times?
Jason
Jason
DoCmd.OutputTo acOutputReport, "rptReportName", acFormatSNP, "c:\SaveFolderName\SavedReportName.SNP"
Comment