<?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 Export to PDF / Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152813#M1332305</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know if you can call from Publisher, but I am not sure that makes sense. Perhaps you can create a copy of the document, and only open that one when you want it to send the file.&lt;/P&gt;&lt;P&gt;Or you can use a control file. Then set the QVW to only send out the file only when that control file exists. Then you can create the file using a scheduled event/command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 20 May 2009 01:10:38 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-05-20T01:10:38Z</dc:date>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152810#M1332302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can the Publisher Enterprise automatically export a PDF document or Excel file from a QlikView document before distribute it ?&lt;/P&gt;&lt;P&gt;If yes how ?&lt;/P&gt;&lt;P&gt;If no how can I do ? Maybe with scripting inside the document ?&lt;/P&gt;&lt;P&gt;Does anyone have this script ? If I associate the script on the open event the PDF or Excel file will be generated everytime someone open the document...so what can be do ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot&lt;/P&gt;&lt;P&gt;Bye&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152810#M1332302</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152811#M1332303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This answer I wrote to another post shows how to export to Excel using macro code:&lt;/P&gt;&lt;P&gt;-------------------------------------------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;I have done something like this before within QlikView before.&lt;/P&gt;&lt;P&gt;There are two steps, export the image to a file, then send the file as an attachement using vbscript. Example code below (example is for Excel export, but image export would be similar, make sure to check the APIguide.qvw file for help). Also make sure to give most generous perms (System Access)to the macro or security will block sending mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'################################EMAIL-HANDLING FUNCTION#################################&lt;BR /&gt;&lt;BR /&gt;Public Function SendMail (From,SendTo, Subject, Body, Attachment)&lt;BR /&gt;', Attachment, SendCC, SendBCC)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; Set objMessage = CreateObject("CDO.Message")&lt;BR /&gt; objMessage.Subject = Subject&lt;BR /&gt; objMessage.From = From&lt;BR /&gt; objMessage.To = SendTo&lt;BR /&gt; objMessage.CC = SendCC&lt;BR /&gt; objMessage.BCC = SendBCC&lt;BR /&gt; objMessage.TextBody = Body&lt;BR /&gt; 'msgbox Attachment&lt;BR /&gt; if( not "" = Attachment) then&lt;BR /&gt; objMessage.AddAttachment Attachment&lt;BR /&gt; end if&lt;BR /&gt;&lt;BR /&gt; objMessage.Configuration.Fields.Item _&lt;BR /&gt; ("&lt;A href="http://schemas.microsoft.com/cdo/configuration/sendusing"&gt;http://schemas.microsoft.com/cdo/configuration/sendusing&lt;/A&gt;") = 2&lt;BR /&gt;&lt;BR /&gt; objMessage.Configuration.Fields.Item _&lt;BR /&gt; ("&lt;A href="http://schemas.microsoft.com/cdo/configuration/smtpserver"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserver&lt;/A&gt;") = "aaaaaa.corp"&lt;BR /&gt;&lt;BR /&gt; objMessage.Configuration.Fields.Item _&lt;BR /&gt; ("&lt;A href="http://schemas.microsoft.com/cdo/configuration/smtpserverport"&gt;http://schemas.microsoft.com/cdo/configuration/smtpserverport&lt;/A&gt;") = 25&lt;BR /&gt;&lt;BR /&gt; objMessage.Configuration.Fields.Update&lt;BR /&gt;&lt;BR /&gt; objMessage.Send&lt;BR /&gt;End Function&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;sub email()&lt;BR /&gt;&lt;BR /&gt; ActiveDocument.ClearAll False&lt;BR /&gt; ActiveDocument.Fields("CheckPointStart").Select "&amp;gt;=" &amp;amp; FormatDateTime( ActiveDocument.Evaluate("today(1)-30"),2)&lt;/P&gt;&lt;P&gt;result = ActiveDocument.Evaluate("$(thresholdTest)")&lt;BR /&gt; 'msgbox result&lt;BR /&gt; if( "Fail" = result) then&lt;/P&gt;&lt;P&gt;Set oShell = CreateObject("WScript.Shell")&lt;BR /&gt; set fso = CreateObject("Scripting.FileSystemObject")&lt;BR /&gt; path = oShell.CurrentDirectory &amp;amp; "\DataIntegrity.xls"&lt;BR /&gt; If fso.FileExists(path) Then&lt;BR /&gt; set excelFile = fso.GetFile(path)&lt;BR /&gt; excelFile.Delete&lt;BR /&gt; end if&lt;BR /&gt;&lt;BR /&gt; Application.Sleep(1000)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; set XLApp = CreateObject("Excel.Application")&lt;BR /&gt; XLApp.Visible = True&lt;BR /&gt; set obj = ActiveDocument.getSheetObject("MainTable")&lt;BR /&gt; obj.sendToExcel&lt;BR /&gt;&lt;BR /&gt; set XLDoc = XLApp.Workbooks.item(1)&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt; ' ActiveDocument.GetSheetObject("LB03").CopyTableToClipboard true&lt;BR /&gt; ' XLApp.Worksheets(1).Range("A1").Select()&lt;BR /&gt; ' XLApp.Worksheets(1).Paste()&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt; XLDoc.SaveAs path&lt;BR /&gt; 'msgbox "pause"&lt;BR /&gt; XLApp.Quit&lt;BR /&gt;&lt;BR /&gt; Application.Sleep(1000)&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; call sendmail("&lt;A href="mailto:a@contextweb.com"&gt;a@aaaaaa.com&lt;/A&gt;", ActiveDocument.GetVariable("sendTo").GetContent.String, "FAIL: Data Integrity test for Internal QV reports failed.", _&lt;BR /&gt; "A total of "&amp;amp;ActiveDocument.Evaluate("$(failedDataSets)") &amp;amp; _&lt;BR /&gt; " out of "&amp;amp;ActiveDocument.Evaluate("$(totalDataSets)") &amp;amp; " datasets had discrepencies which exceeded the " &amp;amp; _&lt;BR /&gt; ActiveDocument.GetVariable("warningThreshold").GetContent.String &amp;amp; _&lt;BR /&gt; " threshold. See attached Excel doc for details for last 30 days. The full QV report is here: &lt;A href="https://qv.contextweb.com/DataIntegrity_ajax/"&gt;https://aaaaaa.com/DataIntegrity_ajax/&lt;/A&gt;", path)&lt;BR /&gt; else&lt;BR /&gt; call sendmail("&lt;A href="mailto:a@contextweb.com"&gt;a@aaaaa.com&lt;/A&gt;", ActiveDocument.GetVariable("sendTo").GetContent.String, "PASS: Data Integrity test for Internal QV reports passed.", _&lt;BR /&gt; "All discrepencies were below the " &amp;amp; ActiveDocument.GetVariable("warningThreshold").GetContent.String &amp;amp; _&lt;BR /&gt; " threshold. The full QV report is here: &lt;A href="https://qv.contextweb.com/DataIntegrity_ajax/"&gt;https://aaaaa.com/DataIntegrity_ajax/&lt;/A&gt;", "")&lt;BR /&gt; end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ActiveDocument.ClearAll False&lt;BR /&gt;&lt;BR /&gt;end sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 May 2009 04:35:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152811#M1332303</guid>
      <dc:creator />
      <dc:date>2009-05-19T04:35:48Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152812#M1332304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok.&lt;/P&gt;&lt;P&gt;But can I call this function from QlikView Publisher ?&lt;/P&gt;&lt;P&gt;What I need is that I schedule the Excel or PDF generation and then distributing them via email.&lt;BR /&gt;If I put the macro in the Open Document Event this will generate a document exporting everytime I open the document, which is not what I want.&lt;/P&gt;&lt;P&gt;Can you help me in this ?&lt;/P&gt;&lt;P&gt;Thank a lot and bye &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 00:55:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152812#M1332304</guid>
      <dc:creator />
      <dc:date>2009-05-20T00:55:19Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152813#M1332305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't know if you can call from Publisher, but I am not sure that makes sense. Perhaps you can create a copy of the document, and only open that one when you want it to send the file.&lt;/P&gt;&lt;P&gt;Or you can use a control file. Then set the QVW to only send out the file only when that control file exists. Then you can create the file using a scheduled event/command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 May 2009 01:10:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152813#M1332305</guid>
      <dc:creator />
      <dc:date>2009-05-20T01:10:38Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152814#M1332306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eugene - I am curious what you mean by control file? What have you used?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks James&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2009 20:02:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152814#M1332306</guid>
      <dc:creator>james</dc:creator>
      <dc:date>2009-06-05T20:02:26Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152815#M1332307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sorry, it sounds more fancy than it is. I am using "control file" like "control flag". It is an empty file, but it's existence is tested by the QV load script or Macro, and used to make a decision of whether to export. Then the file is deleted. The file can be created by a scheduled task, and thus control the export from QV.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Jun 2009 21:17:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152815#M1332307</guid>
      <dc:creator />
      <dc:date>2009-06-05T21:17:50Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152816#M1332308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. You will need to write macro script. For Excel, you just need to utilize the Excel Object Library and the QlikView API to paste the contents into an Excel workbook object as Eugene suggested. Then you can control Excel through the workbook object just as if you were writing macros directly in Excel.&lt;/P&gt;&lt;P&gt;I would use a variable as a flag to indicate whether these operations should be performed conditonally or not. Possibly the qvuser()? Maybe the time the qvw is accessed?&lt;/P&gt;&lt;P&gt;You can probably do the same with pdfs using any type of pdf export software.&lt;/P&gt;&lt;P&gt;There are a variety of custom ways to actually handle the email aspect of it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 01:18:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152816#M1332308</guid>
      <dc:creator>Michael_Reese</dc:creator>
      <dc:date>2009-06-11T01:18:20Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152817#M1332309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eugene Please help me. I am trying to use a section of your code in an Qlikview macro. Basically I need to open and paste the content of a straight table in the worksheet. Your sample does exactly that but it keeps failing on the first line. "Set XLApp = CreateObject("Excel.Application")"&lt;/P&gt;&lt;P&gt;Function CopySendToExcel&lt;/P&gt;&lt;P&gt;set XLApp = CreateObject("Excel.Application")&lt;/P&gt;&lt;P&gt;XLApp.Visible = True&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.getSheetObject("CHEXL01")&lt;/P&gt;&lt;P&gt;' obj.sendToExcel&lt;/P&gt;&lt;P&gt;set XLDoc = XLApp.Workbooks.item(1)&lt;/P&gt;&lt;P&gt;ActiveDocument.GetSheetObject("CHEXL01").CopyTableToClipboard true&lt;/P&gt;&lt;P&gt;XLApp.Worksheets(1).Range("A1").Select()&lt;/P&gt;&lt;P&gt;XLApp.Worksheets(1).Paste()&lt;/P&gt;&lt;P&gt;XLDoc.SaveAs "Financial_Report.xls"&lt;/P&gt;&lt;P&gt;'msgbox "pause"&lt;/P&gt;&lt;P&gt;XLApp.Quit&lt;/P&gt;&lt;P&gt;End Function&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 20:44:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152817#M1332309</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-11T20:44:17Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152818#M1332310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you gave the system access to the module.If not then give select Aloow system access in the module security and current local security and it should work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Talha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 20:52:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152818#M1332310</guid>
      <dc:creator />
      <dc:date>2009-06-11T20:52:43Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152819#M1332311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have any error message on the top of the screen ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 21:52:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152819#M1332311</guid>
      <dc:creator />
      <dc:date>2009-06-11T21:52:51Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152820#M1332312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Though obvious, another thing to keep in mind is that Publisher loads qvw files using the execution service using qvb.exe. This execution should be on a computer running in an account with excel installed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2009 22:52:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152820#M1332312</guid>
      <dc:creator />
      <dc:date>2009-06-11T22:52:55Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152821#M1332313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="margin:0in 0in 0pt;"&gt;I checked the Qlikview Security, the settings are correct.&lt;/P&gt;&lt;P style="margin:0in 0in 0pt;"&gt;&lt;/P&gt;&lt;P style="margin:0in 0in 0pt;"&gt;It seems to fail at different lines. I think it might have something to do with Excel security. I am running MS Excel 2007?&lt;/P&gt;&lt;P style="margin:0in 0in 0pt;"&gt;&lt;/P&gt;&lt;P style="margin:0in 0in 0pt;"&gt;The Qlikview model is still running in a development environment with administrator user rights and MS Excel running locally.&lt;/P&gt;&lt;P style="margin:0in 0in 0pt;"&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Jun 2009 13:04:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152821#M1332313</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-06-15T13:04:17Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152822#M1332314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your application is running on your QV Server no ?&lt;/P&gt;&lt;P&gt;Yes it is the case, do you have excel installed on that server ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Philippe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Jun 2009 19:53:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152822#M1332314</guid>
      <dc:creator />
      <dc:date>2009-06-16T19:53:32Z</dc:date>
    </item>
    <item>
      <title>Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152823#M1332315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, you don't need to have Excel installed on the server.&lt;/P&gt;&lt;P&gt;Best regards&lt;BR /&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Jun 2009 16:30:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152823#M1332315</guid>
      <dc:creator />
      <dc:date>2009-06-17T16:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Export to PDF / Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152824#M1332316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;It is possible to run the macro from an external VBS file.&lt;/P&gt;&lt;P&gt;Place the working macro code inside the VBS file, Create a DOC object and change all of the ActiveDocument to DOC.&lt;/P&gt;&lt;P&gt;then olave the Cscript command to run the VBS inside a batch, and run the batch when the publisher reload ends as an external task.&lt;/P&gt;&lt;P&gt;We have a daily export of an excel after loading with the publisher.&lt;/P&gt;&lt;P&gt;Good Luck&lt;/P&gt;&lt;P&gt;Etay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Aug 2012 13:05:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-PDF-Excel/m-p/152824#M1332316</guid>
      <dc:creator>etay_netintent</dc:creator>
      <dc:date>2012-08-27T13:05:42Z</dc:date>
    </item>
  </channel>
</rss>

