Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

PRINTING IN QLIKVIEW

Hi community,

How to print all the reports of a document Qlikview?

Thanks

Labels (1)
4 Replies
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

Pretty sure you can do it using VBScript macro - you just need to figure out how to suppress the "Print" dialog from popping up every time...

Ask me about Qlik Sense Expert Class!
Not applicable
Author

Please can you give me this macros???

thanks

boorgura
Specialist
Specialist

Sub Print_Reports

Set reps = ActiveDocument.GetDocReports

For i = 0 to reps.Count - 1

Set rep = reps.Item(i)

ActiveDocument.PrintReport rep.id

Next

End Sub

Not applicable
Author

Thank you Rocky, it's OK