Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Saving Reports into PDF

Hi All,

I have created few reports in Report editor.I need to save them in PDF format in my local machine before printing.Please help me in doing so.

Regards
Murali Krishna

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Install a print-to-pdf tool like pdfcreator or cutepdf (or one of a dozen others) and simple print the report to a pdf file.


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

Install a print-to-pdf tool like pdfcreator or cutepdf (or one of a dozen others) and simple print the report to a pdf file.


talk is cheap, supply exceeds demand
Clever_Anjos
Employee
Employee

Create a macro that "prints" to a pdf printer,here you have an example

sub PrintReportPDF

  ActiveDocument.PrintReport "RP01", "PDF-XChange 3.0",false

  ActiveDocument.GetApplication.Sleep 5000

end Sub