Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have got 4 Reports wich have to print into 4 different PDFs via macro (wich works fine by now).
But i also need a single PDF wich contains these 4 Reports (sadly its not possible to xreate a 5th one wich contains the first 4 reports...).
Is there any solution for that in QlikView?
Did you try with builling actual report in QV using "Reports -> Edit Reports" menu? You can make one report with all the contents you want and then print that report to PDF. Just an idea.
That doesnt work because all the reports are serial-prints wich need different variables.
Hi,
Hello, I have the same problem, need a repeated report 3 ó more times in the same PDF
Route macro exists some routine that allows to do this
Thanks
Rose
Sub Gen_Dist_PDF_Micro_pla
UrlPath = "D:\PROYECTOS\CRM\PDF\"
set val=ActiveDocument.Fields("tme_cod_tip_ejc").GetPossibleValues
ActiveDocument.fields("tme_cod_tip_ejc").Select "MICR"
for f=0 to 0
reportName01 = f
reportFile = UrlPath & val.Item(f).Text & ".pdf"
HOLA= PrintReportPDF( "RP02", reportFile)
ActiveDocument.GetApplication.Sleep 5000
next
End Sub
'___________________________________________________________________________________________________________________________________________'
Function PrintReportPDF(oReport, pdfOutputFile)
Set WSHShell = CreateObject("WScript.Shell")
WSHShell.RegWrite "HKCU\Software\QlikViewPDF\OutputFile", pdfOutputFile, "REG_SZ"
WSHShell.RegWrite "HKCU\Software\QlikViewPDF\BypassSaveAs", "1", "REG_SZ"
ActiveDocument.PrintReport oReport, "QlikViewPDF", false
set WSHShell = nothing
End Function
These are the macros that I am using, but different PDF generates me, I need all these PDF (3) in the same PDF
Please, I do not find solution, they might help me
Thank's
Rose
Hi, I have a doubt, Instead of print I want yo export only, do you know how??
Hi,
To be honest, the simplest option is probably going to be to add them back together using something like Nuance ScanSoft or another pdf tool. With those you simple select a number of different reports to combine into a single report and save as one document.
Not ideal but I've used this before when I had a slightly complicated series of five reports to combine.
Cheers,
Emma