Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Export to PDF option

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??


6 Replies
arulsettu
Master III
Master III

Hi

we can only make report using pdf

Not applicable
Author

How to do that?


arulsettu
Master III
Master III

in menu -> Reports -> edit reports -> add follow the steps

arulsettu
Master III
Master III

you can drag your objects into the pdf to make report

v_iyyappan
Specialist
Specialist

Hi,

Check the below youtube video for report export to pdf.

Creating a Report and Using PDF Distribution

Export QlikView report to PDF

Regards,

sivarajs
Specialist II
Specialist II

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