<?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 excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228774#M80778</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Finally i got some solution for macros. It is working with IE Plugins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,XXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Jul 2010 15:34:14 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-07-21T15:34:14Z</dc:date>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228766#M80770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Not able to export to excel in the access point.Any one can help me on this&lt;/P&gt;&lt;P&gt;I have done this using the macro it is working fine at the tool level .But the same is not working when i am trying to export in the Access point. Is there any specific setting has to be changed.&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;XXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,XXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 05:36:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228766#M80770</guid>
      <dc:creator />
      <dc:date>2010-07-21T05:36:21Z</dc:date>
    </item>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228767#M80771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u plz share the code which you have written in Macro ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 06:58:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228767#M80771</guid>
      <dc:creator>manishkumar75</dc:creator>
      <dc:date>2010-07-21T06:58:27Z</dc:date>
    </item>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228768#M80772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;B&gt;Sub&lt;/B&gt; xl&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;BR /&gt;&lt;BR /&gt; &lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;set&lt;/P&gt;&lt;P&gt;&lt;/P&gt;XLApp = &lt;B&gt;CreateObject&lt;/B&gt;("Excel.Application") &lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;XLApp.Visible=True&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;B&gt;set&lt;/B&gt; XLDoc = XLApp.Workbooks.Add &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;set&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;B&gt;&lt;BR /&gt;&lt;/B&gt; table = ActiveDocument.GetSheetObject("CH27") &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;set&lt;/P&gt;&lt;P&gt;&lt;/P&gt;XLSheet = XLDoc.Worksheets("Sheet1") &lt;BR /&gt;&lt;BR /&gt; &lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;table.CopyTableToClipboard&lt;/P&gt;&lt;P&gt;&lt;B&gt;true&lt;/B&gt;&lt;/P&gt;&lt;P&gt;XLSheet.Paste XLSheet.Range( "A1"&lt;/P&gt;&lt;P&gt;) &lt;B&gt;&lt;/B&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;B&gt;&lt;/B&gt; &lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;End&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;B&gt;Sub&lt;/B&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;It is working fine at application but not working at the deployment and is there any idea how tio export the graph in to excel ???&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 07:26:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228768#M80772</guid>
      <dc:creator />
      <dc:date>2010-07-21T07:26:23Z</dc:date>
    </item>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228769#M80773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Do you have&lt;/P&gt;&lt;P&gt;Requested Module Security set to "System Access"&lt;/P&gt;&lt;P&gt;and&lt;/P&gt;&lt;P&gt;Current Local security set to "Allow System Access"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anders&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 08:04:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228769#M80773</guid>
      <dc:creator />
      <dc:date>2010-07-21T08:04:54Z</dc:date>
    </item>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228770#M80774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For exporting the graph in to excel , do you mean exporting the Graph Image to Excel. If it is so then the code is as below :-&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;&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;&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&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 style="font-weight: bold"&gt;&lt;/P&gt;&lt;P style="font-weight: bold"&gt;Sub&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ExportDetails()&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;Dim&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kost&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;Set&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;XLApp = &lt;B&gt;CreateObject&lt;/B&gt;("Excel.Application" &lt;P&gt;)&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;TRUE&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;Set&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XLDoc = XLApp.Workbooks.Add&lt;/P&gt;&lt;P&gt;""&lt;/P&gt;&lt;P&gt;"Sheet1"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"CH02"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;).CopyBitmapToClipboard &lt;P&gt;&lt;B&gt;'Copy the charts value&lt;/B&gt;&lt;/P&gt;&lt;P&gt;"A"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&amp;amp; 1). &lt;P style="font-weight: bold"&gt;Select&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;"CH03"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;).CopyBitmapToClipboard &lt;B&gt;'Copy the charts value&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"A"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&amp;amp; 12). &lt;P style="font-weight: bold"&gt;Select&lt;/P&gt;&lt;P&gt;End&lt;/P&gt;&lt;B&gt;&lt;/B&gt;&lt;P style="font-weight: bold"&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;B&gt;Sub&lt;/B&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 08:25:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228770#M80774</guid>
      <dc:creator>manishkumar75</dc:creator>
      <dc:date>2010-07-21T08:25:51Z</dc:date>
    </item>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228771#M80775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Manish,&lt;/P&gt;&lt;P&gt;Macros are not working. Yes Security is choosen as System Access and Allow System Acess in the Edit Module Section.&lt;/P&gt;&lt;P&gt;I am struggling with this as the macros are working fine in the Server in the Tool . When it is deployed and when u are trying to run the macro it is not working. And throwing error as well.&lt;/P&gt;&lt;P&gt;I am trying to run the Macro through the Button.&lt;/P&gt;&lt;P&gt;Can any one help me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,XXX&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 10:27:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228771#M80775</guid>
      <dc:creator />
      <dc:date>2010-07-21T10:27:54Z</dc:date>
    </item>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228772#M80776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One suggestion I want to give is to use the "Send To Excel" feature of QlikView. It works fine in all cases.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 10:35:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228772#M80776</guid>
      <dc:creator>manishkumar75</dc:creator>
      <dc:date>2010-07-21T10:35:10Z</dc:date>
    </item>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228773#M80777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks manish,&lt;/P&gt;&lt;P&gt;That is working fine. Now i have changed the logic to export the charts to ppt and send it as a mail. Again the same issue it is working fine with the tool. But in Java or Ajax Clients it is not working.&lt;/P&gt;&lt;P&gt;Is it the BUG? or is there any specific Settings has to be enabled so that the macros will work..........&lt;/P&gt;&lt;P&gt;Waiting for Updates?&lt;/P&gt;&lt;P&gt;And is there any documents which will give the know issues in Qlik View??????????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;XXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 10:57:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228773#M80777</guid>
      <dc:creator />
      <dc:date>2010-07-21T10:57:57Z</dc:date>
    </item>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228774#M80778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Finally i got some solution for macros. It is working with IE Plugins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,XXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jul 2010 15:34:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228774#M80778</guid>
      <dc:creator />
      <dc:date>2010-07-21T15:34:14Z</dc:date>
    </item>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228775#M80779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Can you please share the solution for Macros ?&lt;/P&gt;&lt;P&gt;- Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jul 2010 06:57:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228775#M80779</guid>
      <dc:creator>manishkumar75</dc:creator>
      <dc:date>2010-07-22T06:57:11Z</dc:date>
    </item>
    <item>
      <title>export to excel</title>
      <link>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228776#M80780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manish,&lt;/P&gt;&lt;P&gt;I didnt do any changes in Macros it is the same macro. Intially i was not having the IE plugin in Access Point. Now i have downloaded the IE Pulgin and installed. And the macros are working with IE plugin. But still not working with Java and Ajax web Client.&lt;/P&gt;&lt;P&gt;Regards,XXX&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Jul 2010 13:40:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/export-to-excel/m-p/228776#M80780</guid>
      <dc:creator />
      <dc:date>2010-07-22T13:40:35Z</dc:date>
    </item>
  </channel>
</rss>

