<?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: Multiple objects to single excel sheet in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542601#M202769</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go through below link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="loading active_link" href="http://www.qlikblog.at/971/qliktip-32-exporting-multiple-objects-single-excel-document/"&gt;http://www.qlikblog.at/971/qliktip-32-exporting-multiple-objects-single-excel-document/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It may helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 31 Jul 2013 04:56:26 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-07-31T04:56:26Z</dc:date>
    <item>
      <title>Multiple objects to single excel sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542600#M202768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please help on this, i want to export multiple table box like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="44773" class="jive-image-thumbnail jive-image" onclick="" alt="sample.JPG" src="https://community.qlik.com/legacyfs/online/44773_sample.JPG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;and i want to export it unto excel file in a "single sheet" like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="44774" class="jive-image-thumbnail jive-image" onclick="" alt="sample xls.JPG" src="/legacyfs/online/44774_sample xls.JPG" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currrently i'm able to pass this multiple tables into multiple sheets like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="44775" class="jive-image-thumbnail jive-image" onclick="" alt="sample xls 2.bmp" src="/legacyfs/online/44775_sample xls 2.bmp" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With these macros :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*&lt;/P&gt;&lt;P&gt;sub launchXL &lt;/P&gt;&lt;P&gt;set oXL=CreateObject("Excel.Application") &lt;/P&gt;&lt;P&gt;oXL.visible=True &lt;/P&gt;&lt;P&gt;oXL.Workbooks.Add&lt;/P&gt;&lt;P&gt;aSheetObj=Array("tblPeople","tblResponsiveness")&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i=0 to UBound(aSheetObj)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oXL.Sheets.Add&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set oSH = oXL.ActiveSheet&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSH.Range("A1").Select&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set obj = ActiveDocument.GetSheetObject(aSheetObj(i))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; obj.CopyTableToClipboard True&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSH.Paste &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sCaption=obj.GetCaption.Name.v&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set obj=Nothing&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSH.Rows("1:1").Select&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oXL.Selection.Font.Bold = True&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSH.Cells.Select&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oXL.Selection.Columns.AutoFit &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSH.Range("A1").Select&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; oSH.Name=left(sCaption,30)&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set oSH=Nothing&amp;nbsp; &lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set oXL=Nothing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any comments are very much welcome, thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jul 2013 03:15:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542600#M202768</guid>
      <dc:creator />
      <dc:date>2013-07-31T03:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple objects to single excel sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542601#M202769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go through below link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="loading active_link" href="http://www.qlikblog.at/971/qliktip-32-exporting-multiple-objects-single-excel-document/"&gt;http://www.qlikblog.at/971/qliktip-32-exporting-multiple-objects-single-excel-document/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It may helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jul 2013 04:56:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542601#M202769</guid>
      <dc:creator />
      <dc:date>2013-07-31T04:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple objects to single excel sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542602#M202770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls check..hope it will help u...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="loading" href="http://www.qlikblog.at/971/qliktip-32-exporting-multiple-objects-single-excel-document/"&gt;http://www.qlikblog.at/971/qliktip-32-exporting-multiple-objects-single-excel-document/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards-bika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 31 Jul 2013 06:04:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542602#M202770</guid>
      <dc:creator />
      <dc:date>2013-07-31T06:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple objects to single excel sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542603#M202771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for your reply/s&lt;/P&gt;&lt;P&gt;Seems the example above only get the objects counterpart ,, the chart of the table.&lt;/P&gt;&lt;P&gt;Thus the object has only 1 id which is objSales i think., However in my part i want to extract 2 objects of different id, tblPeople and tblResponsiveness,, both of table box property.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Aug 2013 03:04:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542603#M202771</guid>
      <dc:creator />
      <dc:date>2013-08-01T03:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple objects to single excel sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542604#M202772</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;I didn't understand your requirement clearly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But one thing is sure, that blogs example have different object id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. objSalesPerRegion&lt;/P&gt;&lt;P&gt;2. objSalesPerRegion2&lt;/P&gt;&lt;P&gt;3. objSalesPerYearAndRegion&lt;/P&gt;&lt;P&gt;4. objTopCustomers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So as i understand, both are same requirement..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Aug 2013 04:06:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542604#M202772</guid>
      <dc:creator />
      <dc:date>2013-08-01T04:06:04Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple objects to single excel sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542605#M202773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Jayson,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you get any solution for your problem ??&lt;/P&gt;&lt;P&gt;I have same kind of requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajni Batra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2014 11:06:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542605#M202773</guid>
      <dc:creator>rajni_batra</dc:creator>
      <dc:date>2014-05-15T11:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple objects to single excel sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542606#M202774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am also facing the same issue if any one have the solution please post here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Sep 2015 08:06:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Multiple-objects-to-single-excel-sheet/m-p/542606#M202774</guid>
      <dc:creator>venkatbza</dc:creator>
      <dc:date>2015-09-30T08:06:40Z</dc:date>
    </item>
  </channel>
</rss>

