<?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 Macro Export and Import in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182171#M47929</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks so much Rakesh! I used your tips and got my applications to work out exactly as I was intending.&lt;/P&gt;&lt;P&gt;Thanks again, Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Mar 2010 02:25:00 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-03-17T02:25:00Z</dc:date>
    <item>
      <title>Macro Export and Import</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182169#M47927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;I'm trying to set up a macro button which will export the contents of a table with a lot of calculations out to a qvd, then pull that qvd back into QV to do some additional manipulations.&lt;/P&gt;&lt;P&gt;First, is this possible? Second, any adive or clues on what commands to use? I've read about how to create qvd's in the script, not sure how to do it in a macro.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Mar 2010 15:41:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182169#M47927</guid>
      <dc:creator />
      <dc:date>2010-03-16T15:41:34Z</dc:date>
    </item>
    <item>
      <title>Macro Export and Import</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182170#M47928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, very well possible.&lt;/P&gt;&lt;P&gt;You can export content of a chart (table) using macro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;BR /&gt;obj.ExportEx "C:\test.qvd", 4&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;After export you can trigger&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;ActiveDocument.PartialReload&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;to reload the document. Then in the QlikView script you can user REPLACE LOAD.... from this QVD file. REPLACE keyword will allow only this load to execute with partial reload. Before you do the load statement you can set ErrorMode varible to 0 and after load to 1 to ignore the error if no QVD exists.&lt;/P&gt;&lt;P&gt;Hope this gets you going.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Mar 2010 15:48:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182170#M47928</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2010-03-16T15:48:21Z</dc:date>
    </item>
    <item>
      <title>Macro Export and Import</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182171#M47929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks so much Rakesh! I used your tips and got my applications to work out exactly as I was intending.&lt;/P&gt;&lt;P&gt;Thanks again, Dave&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 02:25:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182171#M47929</guid>
      <dc:creator />
      <dc:date>2010-03-17T02:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Export and Import</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182172#M47930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can i use any varible in name of exported file? SMTH like this:&lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P&gt;obj.ExportEx "$(varExportDir)\test_$(varReferenceDate).qvd", 4&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Dec 2013 11:01:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182172#M47930</guid>
      <dc:creator>stantrolav</dc:creator>
      <dc:date>2013-12-04T11:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Export and Import</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182173#M47931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P&gt;obj.ExportEx "C:\test.qvd",&lt;STRONG&gt; 4&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is use of 4?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Mar 2015 02:53:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182173#M47931</guid>
      <dc:creator />
      <dc:date>2015-03-13T02:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Macro Export and Import</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182174#M47932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Will this work in AJAX mode?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can't get it work from Access Point in AJAX mode. Any alternatives to this please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Sep 2015 14:38:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-Export-and-Import/m-p/182174#M47932</guid>
      <dc:creator>dmohanty</dc:creator>
      <dc:date>2015-09-24T14:38:19Z</dc:date>
    </item>
  </channel>
</rss>

