<?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: Generate each qlikview object (Sheet) to Excel in reverse order in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Generate-each-qlikview-object-Sheet-to-Excel-in-reverse-order/m-p/1025005#M346484</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 y = UBound(Objects) To IBound(Objects) step -1&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Mar 2016 14:40:12 GMT</pubDate>
    <dc:creator>m_woolf</dc:creator>
    <dc:date>2016-03-18T14:40:12Z</dc:date>
    <item>
      <title>Generate each qlikview object (Sheet) to Excel in reverse order</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-each-qlikview-object-Sheet-to-Excel-in-reverse-order/m-p/1025004#M346483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have three pivot objects in my qlikview and trying to export them to excel in a order. Example: I have three charts as CH-1, CH-2 and CH-3. It is generating the sheets but it is generating in reverse order like CH-3, CH-2 and CH-1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want the sheets to be generated like CH-1, CH-2 and CH-3. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR y = lBound(Objects) To uBound(Objects)&amp;nbsp; &amp;lt;----------- If I use this code it generates them as CH-3, CH-2, CH-1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR y = lBound(Objects) To uBound(Objects) step -1&amp;nbsp;&amp;nbsp; &amp;lt;---- if I use this code it generates an empty file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am I missing something here ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 13:52:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-each-qlikview-object-Sheet-to-Excel-in-reverse-order/m-p/1025004#M346483</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-03-18T13:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Generate each qlikview object (Sheet) to Excel in reverse order</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-each-qlikview-object-Sheet-to-Excel-in-reverse-order/m-p/1025005#M346484</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 y = UBound(Objects) To IBound(Objects) step -1&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 14:40:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-each-qlikview-object-Sheet-to-Excel-in-reverse-order/m-p/1025005#M346484</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2016-03-18T14:40:12Z</dc:date>
    </item>
    <item>
      <title>Re: Generate each qlikview object (Sheet) to Excel in reverse order</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-each-qlikview-object-Sheet-to-Excel-in-reverse-order/m-p/1025006#M346485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I added your line of code but it still does it in reverse order.&lt;/P&gt;&lt;P&gt;I have the following charts:&lt;/P&gt;&lt;P&gt;Chart-300&lt;/P&gt;&lt;P&gt;Chart-310&lt;/P&gt;&lt;P&gt;Chart-320&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is generating the tabs as chart-320, Chart-310, Chart-300 ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Mar 2016 14:46:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-each-qlikview-object-Sheet-to-Excel-in-reverse-order/m-p/1025006#M346485</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-03-18T14:46:47Z</dc:date>
    </item>
    <item>
      <title>Re: Generate each qlikview object (Sheet) to Excel in reverse order</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-each-qlikview-object-Sheet-to-Excel-in-reverse-order/m-p/1025007#M346486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why not loop through the Object IDs instead?&lt;/P&gt;&lt;P&gt;Something like:&lt;/P&gt;&lt;P&gt;for y = 300 to 320 step 10&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Application.GetSheetObject("chart-" &amp;amp; y)&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>Fri, 18 Mar 2016 15:17:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-each-qlikview-object-Sheet-to-Excel-in-reverse-order/m-p/1025007#M346486</guid>
      <dc:creator>m_woolf</dc:creator>
      <dc:date>2016-03-18T15:17:57Z</dc:date>
    </item>
  </channel>
</rss>

