<?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 all list box columns to csv in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106590#M761905</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Terry - I tried to reproduce the problem but it is working fine for me. You can attach some sample file like I created. I will provide the code here. You can copy and paste into your application.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="210012" alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/210012_Untitled.png" style="height: 284px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Aug 2018 16:30:51 GMT</pubDate>
    <dc:creator>tamilarasu</dc:creator>
    <dc:date>2018-08-06T16:30:51Z</dc:date>
    <item>
      <title>Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106580#M761895</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;Just looking for a way to program a Macro to export all columns of a list box to a csv file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set ExportObject = ActiveDocument.GetSheetObject(ObjID)&amp;nbsp; &lt;/P&gt;&lt;P&gt;ExportObject.Export FileName, ", "&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this seems to only export the first column.&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-all-list-box-columns-to-csv/m-p/106580#M761895</guid>
      <dc:creator>terrusie</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106581#M761896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check here if this helps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlikview.com/thread/217864" title="https://community.qlikview.com/thread/217864"&gt;Macro csv export | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2018 03:35:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106581#M761896</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-08-04T03:35:50Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106582#M761897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be this:&lt;/P&gt;&lt;P&gt;Sub ExportToCSV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Set ExportObject = ActiveDocument.GetSheetObject("(ObjectCode)")&lt;/P&gt;&lt;P&gt;ExportObject.Export "(FileAdress)\(FileName).csv", ";"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;End Sub&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2018 07:11:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106582#M761897</guid>
      <dc:creator>BalaBhaskar_Qlik</dc:creator>
      <dc:date>2018-08-04T07:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106583#M761898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works great for a chart, but when I use it with a listbox, I only get the first column.&amp;nbsp; Is there something I'm doing wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 12:11:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106583#M761898</guid>
      <dc:creator>terrusie</dc:creator>
      <dc:date>2018-08-06T12:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106584#M761899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This works great for a chart, but when I use it with a listbox, I only get the first column.&amp;nbsp; Is there something I'm doing wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 12:11:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106584#M761899</guid>
      <dc:creator>terrusie</dc:creator>
      <dc:date>2018-08-06T12:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106585#M761900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Terry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you mean by all columns? Could you explain your requirement bit more clearer. If possible attach a sample and expected output. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 13:18:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106585#M761900</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-08-06T13:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106586#M761901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tamil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Apologies for not being clear.&amp;nbsp; The listbox has several expressions, but when I use the code above on the listbox, only the data in the initial field show up.&amp;nbsp; None of the data from the expressions show up.&amp;nbsp; For some reason charts produce the expected result, but not listboxes.&amp;nbsp;&amp;nbsp; Unfortunately, the data in my listbox cannot be charted.&amp;nbsp; It contains textual data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Listbox:&lt;/P&gt;&lt;P&gt;------------------------------------------------------------------------------------------------&lt;/P&gt;&lt;P&gt;Field datum 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Expression 1 datum 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Expression 2 datum 1&lt;/P&gt;&lt;P&gt;Field datum 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Expression 1 datum 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Expression 2 datum 2&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Field datum 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Expression 1 datum 3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; |&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Expression 2 datum 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;-------------------------------------------------------------------------------------------------&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Actual CSV Output:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Field datum 1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Field datum 2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Field datum 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Expected CSV Output:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Field datum 1, Expression 1 datum 1, Expression 2 datum 1&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Field datum 2, Expression 1 datum 2, Expression 2 datum 2&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Field datum 3, Expression 1 datum 3, Expression 2 datum 3&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 13:45:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106586#M761901</guid>
      <dc:creator>terrusie</dc:creator>
      <dc:date>2018-08-06T13:45:07Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106587#M761902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Terry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no need to apologize &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;. We just want some clear input to help you further.&amp;nbsp; Now, I understood your question. I have one more request. Is it possible to attach one sample qvw file? It will be really easy for us to test and provide you the solution. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 15:58:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106587#M761902</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-08-06T15:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106588#M761903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tamil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately, I cannot.&amp;nbsp; I do not yet have a pro-license seat.&amp;nbsp; I will soon, perhaps, but not as of yet.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 16:11:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106588#M761903</guid>
      <dc:creator>terrusie</dc:creator>
      <dc:date>2018-08-06T16:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106589#M761904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To reproduce my problem, simply use the code suggested by Bala, above, on a listbox that has a calculated field and at least one expression.&amp;nbsp; I'm sure you will get the same results.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 16:12:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106589#M761904</guid>
      <dc:creator>terrusie</dc:creator>
      <dc:date>2018-08-06T16:12:24Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106590#M761905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Terry - I tried to reproduce the problem but it is working fine for me. You can attach some sample file like I created. I will provide the code here. You can copy and paste into your application.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="210012" alt="Untitled.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/210012_Untitled.png" style="height: 284px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 16:30:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106590#M761905</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-08-06T16:30:51Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106591#M761906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here's the code.&amp;nbsp; It's not that complex.&amp;nbsp; It may have something to do with how I'm configuring the listbox, but I don't know what that could be.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sub CSVTEST&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set ExportObject = ActiveDocument.GetSheetObject("LB501")&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ExportObject.Export "&lt;SPAN style="font-size: 13.3333px;"&gt;C:\...\MyFile.csv"&lt;/SPAN&gt;, ", "&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;End Sub&amp;nbsp; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 17:54:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106591#M761906</guid>
      <dc:creator>terrusie</dc:creator>
      <dc:date>2018-08-06T17:54:41Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106592#M761907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It looks as though you defined the list box solely in the "General" tab.&amp;nbsp; I think I was not clear with how the data are entered into the listbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my listbox, "Field datum #" are the results of an expression entered in "General" &amp;gt;&amp;gt; "Field"&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Expression x datum #" are the results of expressions entered on the "Expressions"&amp;nbsp; tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Only the data from the "General" tab show up in the CSV file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Aug 2018 18:02:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106592#M761907</guid>
      <dc:creator>terrusie</dc:creator>
      <dc:date>2018-08-06T18:02:32Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106593#M761908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. You are right. I have a workaround which will save the file as xls or xlsx and then we can save it as csv file format. But the problem is your folder will have two files one with csv and xls (or xlsx) format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@ &lt;A href="https://googleweblight.com/i?u=https://community.qlik.com/people/marcus_sommer&amp;amp;hl=en-IN&amp;amp;tg=369&amp;amp;pt=21" style="color: #3778c7; text-decoration: inherit; font-family: sans-serif; font-size: 13px; font-weight: bold;"&gt;Marcus Sommer&lt;/A&gt; Any suggestions? I have also tried to use sendtoexcel syntax and then save it as csv file format. But it looks like activeworkbook syntax is not working here. So I am not sure how to save the opened excel (saved in temp folder) in a specified path. Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 17:13:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106593#M761908</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-08-07T17:13:17Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106594#M761909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tamil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as I can see this is the only way to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The way I ended up doing it was exporting it as an Excel file and then running a .vbs script to convert the excel file to CSV.&amp;nbsp; Works like a charm.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2018 20:19:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106594#M761909</guid>
      <dc:creator>terrusie</dc:creator>
      <dc:date>2018-08-07T20:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Export all list box columns to csv</title>
      <link>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106595#M761910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Terry,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Great. Here is the macro code to do the same. Also, If you can post the vbs code here, it may help someone someday.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_15337115220155122 jive_text_macro" jivemacro_uid="_15337115220155122" modifiedtitle="true"&gt;
&lt;P&gt;Sub CSVTEST&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; 'File path &amp;amp; name &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vFile = "C:\Users\Tamil\Desktop\MyFile"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; 'Export to xls format&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; set ExportObj = ActiveDocument.GetSheetObject("LB01")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; ExportObj.Exportbiff vFile &amp;amp; ".xls"&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; 'Convert from xls to csv format&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; Set objExcel = CreateObject("Excel.Application")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; objExcel.Visible = False&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; objExcel.Workbooks.Open(vFile &amp;amp; ".xls")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; objExcel.Activeworkbook.Saveas vFile &amp;amp; ".csv", 6&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; objExcel.quit&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; 'Delete xls file&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; Set Filesys = CreateObject("Scripting.FileSystemObject") &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; Filesys.DeleteFile vFile &amp;amp; ".xls"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; Set objExcel = Nothing&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; Set Filesys = Nothing&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp; Msgbox "File has been created!"&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;End Sub&lt;/P&gt;

&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Aug 2018 07:01:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-all-list-box-columns-to-csv/m-p/106595#M761910</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2018-08-08T07:01:32Z</dc:date>
    </item>
  </channel>
</rss>

