Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
We have export to excel option in top of caption of each chart. In similar manner is there any way to export to PDF??
Hi
we can only make report using pdf
How to do that?
in menu -> Reports -> edit reports -> add follow the steps
you can drag your objects into the pdf to make report
Hi,
Check the below youtube video for report export to pdf.
Creating a Report and Using PDF Distribution
Regards,
There is no direct way to export chart to PDF. You need to,
1. Create reports using report editor (Reports->Edit Reports)
2. Add a new report
3. Drag chart object you want to see in pdf
4. Install pdf printer e.g Bullzip printer,qlikview pdf
5. Use macro in edit module to create pdf ( configure bull zip and reports created in macro)
sample macro:
sub createPDF
printReportPDF "C:\sample.pdf"
ActiveDocument.GetApplication.Sleep 2000
ActiveDocument.PrintReport "RP02", "QlikViewPDF"
ActiveDocument.GetApplication.Sleep 10000
end sub
Function printReportPDF(pdfOutputFile)
Set WSHShell = CreateObject("WScript.Shell")
WSHShell.RegWrite "HKCU\Software\QlikViewPDF\OutputFile", pdfOutputFile, "REG_SZ"
WSHShell.RegWrite "HKCU\Software\QlikViewPDF\BypassSaveAs", "1", "REG_SZ"
Set WSHShell = nothing
End function