<?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 Exporting object to Excel... without Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678223#M246055</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To generate xls from some of my objects I'm using macros found on threads:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;ADDRESS&gt;&lt;A href="https://community.qlik.com/message/566889"&gt;&lt;/A&gt;&lt;/ADDRESS&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/461045"&gt;Re: Re: Macros guides, documents useful to codding?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These macros do work great, but now I need to modify one thing here: these macros use CreateObject("Excel.Application") that starts Excel when Excel is present on that machine. But since Qlik is able to export any object to xls without having Excel on that machine, is there a way to use some other command than CreateObject("Excel.Application") and export object to xls using some internal Qlik function?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm just wondering if there is a way to actually write object to xls file, not running Excel with particular object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for any answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Pawel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Jul 2014 10:01:03 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-07-30T10:01:03Z</dc:date>
    <item>
      <title>Exporting object to Excel... without Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678223#M246055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To generate xls from some of my objects I'm using macros found on threads:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;ADDRESS&gt;&lt;A href="https://community.qlik.com/message/566889"&gt;&lt;/A&gt;&lt;/ADDRESS&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/461045"&gt;Re: Re: Macros guides, documents useful to codding?&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These macros do work great, but now I need to modify one thing here: these macros use CreateObject("Excel.Application") that starts Excel when Excel is present on that machine. But since Qlik is able to export any object to xls without having Excel on that machine, is there a way to use some other command than CreateObject("Excel.Application") and export object to xls using some internal Qlik function?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm just wondering if there is a way to actually write object to xls file, not running Excel with particular object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance for any answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;Pawel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 10:01:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678223#M246055</guid>
      <dc:creator />
      <dc:date>2014-07-30T10:01:03Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting object to Excel... without Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678224#M246056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will export xls not using the Create Object Excel&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path = "C:\TEST.xls"&amp;nbsp; &lt;/P&gt;&lt;P&gt;set obj = ActiveDocument.GetSheetObject("CH685")&amp;nbsp; &lt;/P&gt;&lt;P&gt;obj.ExportBiff Path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good Luck&lt;/P&gt;&lt;P&gt;Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 12:32:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678224#M246056</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-07-30T12:32:20Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting object to Excel... without Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678225#M246057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Fernando,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This works very well. Is there a possibility to target particular books in Excel file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Pawel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2014 14:23:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678225#M246057</guid>
      <dc:creator />
      <dc:date>2014-07-30T14:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting object to Excel... without Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678226#M246058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Pawel , great to hear that work ok!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you want to say to target particular books in excel? please explain a little more&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2014 14:03:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678226#M246058</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-09-15T14:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting object to Excel... without Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678227#M246059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Fernando,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I needed to create one Excel file with few Qlik objects exported to separate books in this file. I found a macro that does what I needed - details here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-message-small" data-containerid="2051" data-containertype="14" data-objectid="566889" data-objecttype="2" href="http://community.qlik.com/message/566889#566889"&gt;http://community.qlik.com/message/566889#566889&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it wasn't good for me, because my objects were too complex and took too much time to get calculated, so Excel had timeouts waiting for data from Qlik. So I took different approach, I exported all objects to separate files using code you've provided, then I merged these files into one using VBA in Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I asked about targeting I just wondered if it is possible to add another book to existing file, by writing data to that file specifying the name of new book in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Pawel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2014 14:20:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678227#M246059</guid>
      <dc:creator />
      <dc:date>2014-09-15T14:20:22Z</dc:date>
    </item>
    <item>
      <title>Re: Exporting object to Excel... without Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678228#M246060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pawel, you can add a new excel page using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;set XLDoc = XLApp.Workbooks.Add&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;see this link, hope this helps!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Fernando&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;A href="https://community.qlik.com/thread/22364"&gt;Create Excel Files via Macro on QlikView Server&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Sep 2014 14:42:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exporting-object-to-Excel-without-Excel/m-p/678228#M246060</guid>
      <dc:creator>fkeuroglian</dc:creator>
      <dc:date>2014-09-15T14:42:44Z</dc:date>
    </item>
  </channel>
</rss>

