<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How to export Sheet Object / Chart &amp;quot;CH01&amp;quot; into PDF file? Very Urgent.. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80263#M788456</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please make your question more precise.&lt;/P&gt;&lt;P&gt;I have no clue what you actually need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your table doesn´t fit to one page then decrease the fontsize of your QV Table untill the table fits to one page!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps attach a sample picture with messed up output&lt;/P&gt;&lt;P&gt;and a picture how the print should look like&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Feb 2018 10:10:40 GMT</pubDate>
    <dc:creator>Frank_Hartmann</dc:creator>
    <dc:date>2018-02-12T10:10:40Z</dc:date>
    <item>
      <title>How to export Sheet Object / Chart "CH01" into PDF file? Very Urgent..</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80256#M788449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;H1 style="font-style: inherit; font-size: 26px; font-family: inherit;"&gt;&lt;SPAN style="font-family: inherit; font-size: 10pt; font-style: inherit; font-weight: inherit; line-height: 1.5em;"&gt;Dear All ,&lt;/SPAN&gt;&lt;/H1&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I have following macro code through which I send emails with .xls attachment but recipients of the emails want to get attachments in .PDF at the place of .XLS files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I have installed Bullzip PDF Printer &amp;amp; also aome other PDF Printers but unable to understand that where I have to change in the following macro codes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;I request you to kindly provide your support &amp;amp; suggest that what &amp;amp; where I have to change?&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Chart (Object ID) is "CH01"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80256#M788449</guid>
      <dc:creator>anilkumarmishra</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to export Sheet Object / Chart "CH01" into PDF file? Very Urgent..</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80257#M788450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have QV publisher?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2018 13:28:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80257#M788450</guid>
      <dc:creator>neelamsaroha157</dc:creator>
      <dc:date>2018-02-09T13:28:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to export Sheet Object / Chart "CH01" into PDF file? Very Urgent..</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80258#M788451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you set Bullzip Printer as your&amp;nbsp; Standardprinter?&lt;/P&gt;&lt;P&gt;Try to use the following code to generate the PDF with Bullzip and afterwards use the Outputfilepath of the generated PDF in your Emailmacro as attachment:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15181899980205972 jive_text_macro" jivemacro_uid="_15181899980205972" modifiedtitle="true"&gt;
&lt;P&gt;sub Export&lt;/P&gt;
&lt;P&gt; set docprop = ActiveDocument.GetProperties&lt;/P&gt;
&lt;P&gt; set ps = docprop.PrintSheetSettings&lt;/P&gt;
&lt;P&gt; ps.SheetPrintDrawBackGround = true&lt;/P&gt;
&lt;P&gt; ActiveDocument.SetProperties docprop&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt; tempFolder="C:\Users\Admin\Desktop\" 'EDIT Outputpath here&lt;/P&gt;
&lt;P&gt; reportName="TestDashboard"&lt;/P&gt;
&lt;P&gt; reportFile = tempFolder &amp;amp; reportName &amp;amp; day(date) &amp;amp; monthname(month(date))&amp;amp;".pdf"&lt;/P&gt;
&lt;P&gt; 'msgbox reportFile&lt;/P&gt;
&lt;P&gt; PrintPDFWithBullZip reportFile, mergeFlag&lt;/P&gt;
&lt;P&gt; ActiveDocument.GetApplication.Sleep 5000&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ActiveDocument.GetSheetObject("TB01").print 'EDIT your Object ID here&lt;/P&gt;
&lt;P&gt; ActiveDocument.GetApplication.Sleep 5000&lt;/P&gt;
&lt;P&gt; msgbox "saved."&lt;/P&gt;
&lt;P&gt; end sub&lt;/P&gt;
&lt;P&gt; '===========================================================================&lt;/P&gt;
&lt;P&gt; Function printReportPDF(pdfOutputFile)&lt;/P&gt;
&lt;P&gt; Set WSHShell = CreateObject("WScript.Shell")&lt;/P&gt;
&lt;P&gt; WSHShell.RegWrite "HKCU\Software\QlikviewPDF\OutputFile", pdfOutputFile, "REG_SZ"&lt;/P&gt;
&lt;P&gt; WSHShell.RegWrite "HKCU\Software\QlikviewPDF\BypassSaveAs", "1", "REG_SZ"&lt;/P&gt;
&lt;P&gt; Set WSHShell = nothing&lt;/P&gt;
&lt;P&gt; End function &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;FUNCTION PrintPDFWithBullZip (pdfOutputFile, mergeFlag)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set obj = CreateObject("Bullzip.PDFSettings")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetValue "Output" , pdfOutputFile&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetValue "ConfirmOverwrite", "no"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetValue "ShowSaveAS", "never"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetValue "ShowSettings", "never"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetValue "ShowPDF", "no"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetValue "RememberLastFileName", "no"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetValue "RememberLastFolderName", "no"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetValue "ShowProgressFinished", "no"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetValue "ShowProgress", "no"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if mergeFlag = true then 'merge multiple pages into 1 file&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.SetValue "mergefile", pdfOutputFile&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; end if&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.WriteSettings True&lt;/P&gt;
&lt;P&gt;END FUNCTION&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2018 15:27:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80258#M788451</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2018-02-09T15:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to export Sheet Object / Chart "CH01" into PDF file? Very Urgent..</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80259#M788452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Dear Sir,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Good Morning.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Special thanks for immediate response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;this code is working fine but some columns of the object sheet "CH01" are printing in the next pages .&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;I want print all columns in a page &amp;amp;&amp;nbsp; if data are more that one page then it should print with all columns in next page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Please help &amp;amp; suggest me that what code &amp;amp; where it should be added to print all columns with maximize on a single page.&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Please also provide code to set the page size of PDF file in LANDSCAPE &amp;amp; PORTRAIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;With thanks &amp;amp; regards,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;AKM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Feb 2018 05:52:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80259#M788452</guid>
      <dc:creator>anilkumarmishra</dc:creator>
      <dc:date>2018-02-10T05:52:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to export Sheet Object / Chart "CH01" into PDF file? Very Urgent..</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80260#M788453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess you will need to decrease the fontsize of your chart unless all columns fit to one page.&lt;/P&gt;&lt;P&gt;If the rows exceed one page they will be progressed on the next page with all columns automatically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont have the code to set Landscape or Portrait mode but you can go to bullzip printersettings and there will be the option to change into landscape mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Feb 2018 11:14:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80260#M788453</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2018-02-10T11:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to export Sheet Object / Chart "CH01" into PDF file? Very Urgent..</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80261#M788454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just figured out that you can set the Orientation by adding following line to the&amp;nbsp; &lt;STRONG&gt;FUNCTION PrintPDFWithBullZip (pdfOutputFile, mergeFlag):&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="; color: #993366; font-size: 14pt;"&gt;&lt;STRONG&gt;obj.SetValue "Orientation", "landscape"&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Also have a look here:&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.biopdf.com/guide/settings.php" title="http://www.biopdf.com/guide/settings.php"&gt;PDF Writer - Settings&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;hope this helps&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Feb 2018 11:40:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80261#M788454</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2018-02-10T11:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to export Sheet Object / Chart "CH01" into PDF file? Very Urgent..</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80262#M788455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Special thanks for reply but please tell me that how I can print page no on every pages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With regards,&lt;/P&gt;&lt;P&gt;AKM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Feb 2018 05:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80262#M788455</guid>
      <dc:creator>anilkumarmishra</dc:creator>
      <dc:date>2018-02-12T05:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to export Sheet Object / Chart "CH01" into PDF file? Very Urgent..</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80263#M788456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please make your question more precise.&lt;/P&gt;&lt;P&gt;I have no clue what you actually need.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your table doesn´t fit to one page then decrease the fontsize of your QV Table untill the table fits to one page!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps attach a sample picture with messed up output&lt;/P&gt;&lt;P&gt;and a picture how the print should look like&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Feb 2018 10:10:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-export-Sheet-Object-Chart-quot-CH01-quot-into-PDF-file/m-p/80263#M788456</guid>
      <dc:creator>Frank_Hartmann</dc:creator>
      <dc:date>2018-02-12T10:10:40Z</dc:date>
    </item>
  </channel>
</rss>

