<?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: Export table from load script to Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1650426#M920724</link>
    <description>&lt;P&gt;Im Getting an error file not found and cant open file.Pls assist?&lt;/P&gt;</description>
    <pubDate>Sun, 24 Nov 2019 10:38:12 GMT</pubDate>
    <dc:creator>yrstruly</dc:creator>
    <dc:date>2019-11-24T10:38:12Z</dc:date>
    <item>
      <title>Export table from load script to Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1077342#M920720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to know if it is possible to export data from load script to an excel file as can be done with qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is possible, can you provide some examples?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1077342#M920720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Export table from load script to Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1077343#M920721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can export to .txt file and then you can open in Excel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store MyData into Samplefile.txt (txt);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 May 2016 20:01:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1077343#M920721</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-05-04T20:01:02Z</dc:date>
    </item>
    <item>
      <title>Re: Export table from load script to Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1077344#M920722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can store in csv format in order to load it from excel (1), or you can have a table box in a hidden sheet with the data you want to export and run a macro that exports to excel after the script runs (2).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1-Store command:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;STORE YourTableName into YourFile.csv (txt);&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; 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-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;2-Macro:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;sub Export&lt;/P&gt;&lt;P&gt;&amp;nbsp; on error resume next&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set obj = ActiveDocument.GetSheetObject("ID OF THE TABLE TO EXPORT")&lt;/P&gt;&lt;P&gt;&amp;nbsp; vPath = "Path to the excel file"&lt;/P&gt;&lt;P&gt;&amp;nbsp; vName = "Name of the excel file"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; set filesys=CreateObject("Scripting.FileSystemObject")&lt;/P&gt;&lt;P&gt;&amp;nbsp; If Not filesys.FolderExists(vPath) Then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set newfolder = filesys.CreateFolder(vPath)&lt;/P&gt;&lt;P&gt;&amp;nbsp; End If&lt;/P&gt;&lt;P&gt;&amp;nbsp; obj.ExportBiff vPath &amp;amp; vName&lt;/P&gt;&lt;P&gt;&amp;nbsp; Set obj = nothing&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 May 2016 12:23:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1077344#M920722</guid>
      <dc:creator>santiago_respane</dc:creator>
      <dc:date>2016-05-05T12:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Export table from load script to Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1077345#M920723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks &lt;A href="https://community.qlik.com/qlik-users/208748"&gt;santiago.respane&lt;/A&gt;It worked perfectly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 May 2016 14:41:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1077345#M920723</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-05-10T14:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Export table from load script to Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1650426#M920724</link>
      <description>&lt;P&gt;Im Getting an error file not found and cant open file.Pls assist?&lt;/P&gt;</description>
      <pubDate>Sun, 24 Nov 2019 10:38:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1650426#M920724</guid>
      <dc:creator>yrstruly</dc:creator>
      <dc:date>2019-11-24T10:38:12Z</dc:date>
    </item>
    <item>
      <title>Re: Export table from load script to Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1792509#M1210816</link>
      <description>&lt;P&gt;My file just comes out as 'file' - i can right click and open in excel and it opens ok but i'd like to be able to export a clean xls or xlsx, any ideas on how to alter the macro to do that?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Mar 2021 12:15:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-table-from-load-script-to-Excel/m-p/1792509#M1210816</guid>
      <dc:creator>gareth_muir</dc:creator>
      <dc:date>2021-03-18T12:15:06Z</dc:date>
    </item>
  </channel>
</rss>

