Simple VBA code to export Access Report to saved P

2019-06-28 01:33发布

I'm looking for a very simple solution here. I simply want a vba script that I can run over and over again to save the same Access report (that changes as the weeks go by) into the same file over and over again. I need it to be the same name each time and don't want to be prompted that the filename is already there. In my research, it feels like the following should work but it does not. Can anyone provide a simple script that performs this task?

 Sub program()
 DoCmd.OutputTo acOutputReport, "Employee1",  
 acFormatPDF,"C:\Users\desktop\PDFs\Report1.pdf"
 End Sub

1条回答
\"骚年 ilove
2楼-- · 2019-06-28 02:12

Add a line continuation character (underscore: _) to indicate the line following DoCmd.OutputTo should be considered part of the same logical instruction:

DoCmd.OutputTo acOutputReport, "Employee1", _ 
acFormatPDF,"C:\Users\desktop\PDFs\Report1.pdf"

The line continuation character must be preceded by at least one space, and there can be no characters after the line continuation.

查看更多
登录 后发表回答