<?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: send to excel option for document/user report in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415795#M1303463</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls share your file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Jun 2013 07:33:34 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-06-19T07:33:34Z</dc:date>
    <item>
      <title>send entire report to excel</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415786#M1303450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Inside a .qvw document, I have created a document report. (Reports --&amp;gt; Edit Reports)&lt;/P&gt;&lt;P&gt;Is there any option to send this report to excel?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anju&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/send-entire-report-to-excel/m-p/415786#M1303450</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415787#M1303453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there any way to send the entire report to an excel sheet?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Mar 2013 08:34:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415787#M1303453</guid>
      <dc:creator />
      <dc:date>2013-03-07T08:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415788#M1303455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code I used. &lt;/P&gt;&lt;P&gt;I got the basic code from this post by&amp;nbsp; &lt;A href="https://community.qlik.com/qlik-users/17633"&gt;Miguel Angel Baeyens&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/message/319277#319277" title="http://community.qlik.com/message/319277#319277"&gt;http://community.qlik.com/message/319277#319277&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;sub test&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt; 'Set the path where the excel will be saved &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; filePath = "C:\Test.xls"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Create the Excel spreadsheet &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set excelFile = CreateObject("Excel.Application")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; excelFile.Visible = true&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Create the WorkBook&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set curWorkBook = excelFile.WorkBooks.Add&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Create the Sheet&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'first chart object&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set curSheet = curWorkBook.WorkSheets(1)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;'loop&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;chartArray = Array("CH06","CH09", "CH10")&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;usedRows=0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;For Each chart In chartArray&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp; Set i = ActiveDocument.GetSheetObject(chart)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; chartCaption = i.GetCaption.Name.v&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; curSheet.Cells(usedRows+1, 1)=chartCaption&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; i.CopyTableToClipboard true&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; curSheet.Cells(usedRows+3, 1).Select&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; curSheet.Paste &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; usedRows=curSheet.UsedRange.Rows.Count+3 &lt;SPAN style="color: #0000ff;"&gt;---&amp;gt;function to get the first unused row&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;Next&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;'loop end&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt; excelFile.Visible = true&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt; 'Save the file and quit excel&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; curWorkBook.SaveAs filePath&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; curWorkBook.Close&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; excelFile.Quit&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Cleanup&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set curWorkBook = nothing&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set excelFile = nothing&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff00ff;"&gt;end sub&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 08 Mar 2013 11:51:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415788#M1303455</guid>
      <dc:creator />
      <dc:date>2013-03-08T11:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415789#M1303457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Thanks for the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;I am getting following error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Object required: 'i'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Paste method of Worksheet class failed&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;Can you share me the qvw file itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="background-color: #ffffff; color: #737373; font-family: Arial;"&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 10:25:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415789#M1303457</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-18T10:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415790#M1303458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you paste the entire macro?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 10:53:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415790#M1303458</guid>
      <dc:creator />
      <dc:date>2013-06-18T10:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415791#M1303459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes.&lt;/P&gt;&lt;P&gt;I had to comment '&lt;SPAN style="color: #0000ff; font-family: Arial; background-color: #ffffff;"&gt;--&amp;gt;function to get the first unused row&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: Arial; background-color: #ffffff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; I get the error as Copy to Clipboard failed. And "Object required 'i'"&lt;/P&gt;&lt;P&gt;I cannot share the qvw as it has customer data. I will try and see if I can share the qvw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 11:30:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415791#M1303459</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-18T11:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415792#M1303460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please find attached the qvw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you can solve the error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jun 2013 11:57:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415792#M1303460</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-18T11:57:06Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415793#M1303461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the problem is with this line..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chartArray = Array("CH06","CH09", "CH10")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CH06...etc are names of sheet objects...the qvw you shared does not have them.&lt;/P&gt;&lt;P&gt;So, &lt;/P&gt;&lt;P&gt;in your case..the statement should be..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;chartArray = Array("CH01","CH02", "TB01").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 06:39:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415793#M1303461</guid>
      <dc:creator />
      <dc:date>2013-06-19T06:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415794#M1303462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry to have not included that in code which I shared.&lt;/P&gt;&lt;P&gt;I had done that correction after which I got the "Copy to Clipboard failed" and above two errors also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no consistency in the error, that is, sometimes I get them and sometimes I dont...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What other parameters can affect Qlikview performance?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 06:44:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415794#M1303462</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-19T06:44:06Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415795#M1303463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls share your file&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 07:33:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415795#M1303463</guid>
      <dc:creator />
      <dc:date>2013-06-19T07:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415796#M1303464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PFA the latest version of qvw.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done following changes below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt; Document properties &amp;gt; Security &amp;gt; Macro override security checkbox ticked.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/thread/67941"&gt;http://community.qlik.com/thread/67941&lt;/A&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;2. &lt;SPAN style="color: #737373; font-family: Arial; background-color: #ffffff;"&gt;User Preferences&amp;gt;Export tab allowed export for Charts and Tables.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;&lt;A _jive_internal="true" class="loading" href="https://community.qlik.com/message/354207"&gt;http://community.qlik.com/message/354207&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;Now the only error I am getting is "&lt;STRONG&gt;Copy to clipboard Fail&lt;/STRONG&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;The Logical solution seems is to add a delay for every chart and also to clear the clipboard after every paste.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;I am exploring options to do the same using VbScript.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;Let me know if you can help solve this problem.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;Thanks a ton for all the help till now. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;Saurabh Pandit&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Jun 2013 08:11:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415796#M1303464</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-06-19T08:11:24Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415797#M1303465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Saurabh,&lt;/P&gt;&lt;P&gt;Did you find a solution to clear the clipboard?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Stéphane&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Sep 2014 08:56:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415797#M1303465</guid>
      <dc:creator>schivet</dc:creator>
      <dc:date>2014-09-17T08:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415798#M1303466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stephane,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't remember now as its a old post. I will try and work on the app over weekend and let you know if I can find a solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Saurabh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Sep 2014 19:57:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415798#M1303466</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-18T19:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415799#M1303467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Saurabh,&lt;/P&gt;&lt;P&gt;I have added this comand in the module to empty the clipboard:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="2014-09-19_Image 004.jpg" class="jive-image" src="/legacyfs/online/67215_2014-09-19_Image 004.jpg" /&gt;&lt;/P&gt;&lt;P&gt;It did work for a few days but not we still have the problem again!&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;"&lt;STRONG&gt;Copy to clipboard Fail&lt;/STRONG&gt;"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;Hope you find something.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #737373; background-color: #ffffff; font-family: Arial;"&gt;Thanks&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Sep 2014 13:30:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415799#M1303467</guid>
      <dc:creator>schivet</dc:creator>
      <dc:date>2014-09-19T13:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: send to excel option for document/user report</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415800#M1303468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If it worked after the above code then some external changes might have been done causing the re emergence of the error.&lt;/P&gt;&lt;P&gt;I couldn't figure out a solution though.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 09:41:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415800#M1303468</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-09-22T09:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: send entire report to excel</title>
      <link>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415801#M1303469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok, thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Sep 2014 10:27:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/send-entire-report-to-excel/m-p/415801#M1303469</guid>
      <dc:creator>schivet</dc:creator>
      <dc:date>2014-09-22T10:27:17Z</dc:date>
    </item>
  </channel>
</rss>

