Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I'm looking for a macro that would create pdfs and store them in seperate folders named after given reports. Macro should create pdfs for ALL reports within the qv app without listing the reports by name. Any help much appreciated.
Regards,
Przemek
Basically you could with the code below print all reports:
set reps = ActiveDocument.GetDocReports
for i = 0 to reps.Count-1
set rep = reps.Item(i)
ActiveDocument.PrintDocReport rep.id
' msgbox(rep.Id)
next
Store into PathFile is depending from your pdf-printer. With the old QlikViewPDF (< QV10) is it easy ..., by another printer Idon't know.
- Marcus