<?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: Macro to export different objects from QlikView Sheets to power point in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010463#M648448</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, it won't.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Oct 2015 11:50:00 GMT</pubDate>
    <dc:creator>m_woolf</dc:creator>
    <dc:date>2015-10-07T11:50:00Z</dc:date>
    <item>
      <title>Macro to export different objects from QlikView Sheets to power point</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010459#M648444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px;"&gt;I am writing a macro in vbscript to export objects from sheets in Qlikview to a ppt. In a sheet, I have some objects in a sheet, but when I extract then to ppt, they are coming in reverse order of their id. Suppose the object ids a sheet are CH1, CH2, CH3.. In the code when I read them, they start from backward like CH3, CH2, CH1.. I have to place each object in specific position in ppt, so need to read them in correct order. I am using following code :-&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px;"&gt;&lt;CODE style="font-family: Consolas, Menlo, Monaco, 'Lucida Console', 'Liberation Mono', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Courier New', monospace, sans-serif;"&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;set&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; s&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;ActiveDocument&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;ActiveSheet&lt;BR /&gt;&amp;nbsp; charts&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;s&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;GetSheetObjects&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;Set&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; PPSlide &lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; PPPres&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;.&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;Slides&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;pptiterno&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;for&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; i&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;=&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;lbound&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;charts&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; &lt;/SPAN&gt;&lt;SPAN class="kwd" style="color: #00008b;"&gt;to&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt; ubound&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;charts&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;)&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;&lt;BR /&gt;&amp;nbsp; msgbox charts&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;(&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;i&lt;/SPAN&gt;&lt;SPAN class="pun" style="color: #000000;"&gt;).&lt;/SPAN&gt;&lt;SPAN class="pln" style="color: #000000;"&gt;getobjectid&lt;BR /&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #222222; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 15px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;If in the sheet the objects are from CH57 - CH67, in the code they come as CH67-CH57. But I want them from CH57 - CH67. I simply tried to reverse the loop like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i=ubound(charts) to lbound(charts)&lt;/P&gt;&lt;P&gt;but this does not work. Can someone help me to reverse this object array ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for any help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 19:54:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010459#M648444</guid>
      <dc:creator />
      <dc:date>2015-10-06T19:54:15Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export different objects from QlikView Sheets to power point</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010460#M648445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;for i=ubound(charts) to lbound(charts) step -1&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 19:57:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010460#M648445</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2015-10-06T19:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export different objects from QlikView Sheets to power point</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010461#M648446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you add the clause "step" at the end of your for statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR i=UBound(charts) TO LBound(charts) STEP -1&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 19:57:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010461#M648446</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-06T19:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export different objects from QlikView Sheets to power point</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010462#M648447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;If i take step - 1 , wouldn't it miss the last object id in the extraction ?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Oct 2015 20:14:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010462#M648447</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-06T20:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Macro to export different objects from QlikView Sheets to power point</title>
      <link>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010463#M648448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, it won't.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Oct 2015 11:50:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Macro-to-export-different-objects-from-QlikView-Sheets-to-power/m-p/1010463#M648448</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2015-10-07T11:50:00Z</dc:date>
    </item>
  </channel>
</rss>

