<?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: exporting to excel file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078454#M932188</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried with using the Table Box object instead of ListBox?.. &lt;/P&gt;&lt;P&gt;You can add the needed fields and export to excel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Mar 2016 03:23:36 GMT</pubDate>
    <dc:creator>settu_periasamy</dc:creator>
    <dc:date>2016-03-03T03:23:36Z</dc:date>
    <item>
      <title>exporting to excel file</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078452#M932186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am pulling a table directly from Database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the original table has 50 columns.&lt;/P&gt;&lt;P&gt;I have only pulled 10 columns to QV.&lt;/P&gt;&lt;P&gt;and among the 10 columns I am only pulling 2 columns to the dashboard by listbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make a shortcut that extracts the 10 columns and all the rows to excel file.&lt;/P&gt;&lt;P&gt;but when I right click the list box which only contains one column information, only one column is exoprted to excel file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any way i can make short cut to export all 10 columns to excel file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you 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/exporting-to-excel-file/m-p/1078452#M932186</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: exporting to excel file</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078453#M932187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use macro to export specific list boxes into excel. I have attached a sample VB script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14569735513063323" jivemacro_uid="_14569735513063323" modifiedtitle="true"&gt;
&lt;P&gt;Sub Export&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Dim XLApp&lt;/P&gt;
&lt;P&gt;Set XLApp = CreateObject("Excel.Application")&lt;/P&gt;
&lt;P&gt;XLApp.Visible = False&lt;/P&gt;
&lt;P&gt;Set XLDoc = XLApp.Workbooks.Add&lt;/P&gt;
&lt;P&gt;set XLSheet = XLDoc.Worksheets(1)&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;********** Type your listbox object ID's in array******&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;ColArray = ARRAY("LB01", "LB02")&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;ColNum = 1&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;For Each Tmp in ColArray&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;set obj = ActiveDocument.GetSheetObject(Tmp)&lt;/P&gt;
&lt;P&gt;obj.CopyTableToClipboard true&lt;/P&gt;
&lt;P&gt;XLSheet.Cells(1,ColNum).Select&lt;/P&gt;
&lt;P&gt;XLSheet.Paste()&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;ColNum = ColNum + 1&lt;/P&gt;
&lt;P&gt;Next&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;XLSheet.Cells(1,1).Select&lt;/P&gt;
&lt;P&gt;XLDoc.SaveAs "C:\Users\Tamilarasu.Nagaraj\Desktop\Test\Test.xlsx"&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;XLApp.Application.quit&lt;/SPAN&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt;set XLApp = Nothing&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;set XLDoc = Nothing&lt;/P&gt;
&lt;P&gt;set XLSheet = Nothing&lt;/P&gt;
&lt;P&gt;Msgbox "Exported Sucessfully"&lt;/P&gt;
&lt;P&gt;End sub&lt;SPAN style="font-size: 9pt; line-height: 12pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;





&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have any issues, let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 02:56:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078453#M932187</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-03-03T02:56:19Z</dc:date>
    </item>
    <item>
      <title>Re: exporting to excel file</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078454#M932188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried with using the Table Box object instead of ListBox?.. &lt;/P&gt;&lt;P&gt;You can add the needed fields and export to excel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 03:23:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078454#M932188</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2016-03-03T03:23:36Z</dc:date>
    </item>
    <item>
      <title>Re: exporting to excel file</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078455#M932189</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;Create a Table Box object and add all the fields you required and export it to excel.&amp;nbsp; List object can hold only one field value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 03:36:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078455#M932189</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2016-03-03T03:36:02Z</dc:date>
    </item>
    <item>
      <title>Re: exporting to excel file</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078456#M932190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a table box and add all the required columns into it and then export the same to excel you will get all the data you want...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 06:23:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078456#M932190</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-03-03T06:23:15Z</dc:date>
    </item>
    <item>
      <title>Re: exporting to excel file</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078457#M932191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answer! it helped a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 17:29:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078457#M932191</guid>
      <dc:creator />
      <dc:date>2016-03-03T17:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: exporting to excel file</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078458#M932192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answer! it helped a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 17:30:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078458#M932192</guid>
      <dc:creator />
      <dc:date>2016-03-03T17:30:09Z</dc:date>
    </item>
    <item>
      <title>Re: exporting to excel file</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078459#M932193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your answer! it helped a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 17:30:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078459#M932193</guid>
      <dc:creator />
      <dc:date>2016-03-03T17:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: exporting to excel file</title>
      <link>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078460#M932194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you I will try to out! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Mar 2016 17:30:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/exporting-to-excel-file/m-p/1078460#M932194</guid>
      <dc:creator />
      <dc:date>2016-03-03T17:30:29Z</dc:date>
    </item>
  </channel>
</rss>

