<?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 Export to CSV in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680173#M669280</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone!!&lt;/P&gt;&lt;P&gt;Today i'm trying to export some straight table to CSV file.&lt;/P&gt;&lt;P&gt;I read some discussion here or in other forums, and all suggested to use macro. &lt;/P&gt;&lt;P&gt;I did some tests following their suggestions, but in any case I've found a method that works.&lt;/P&gt;&lt;P&gt;Can someone explain the correct way to export one or more tables in a csv file ??&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Oct 2014 08:44:43 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-10-08T08:44:43Z</dc:date>
    <item>
      <title>Export to CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680173#M669280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone!!&lt;/P&gt;&lt;P&gt;Today i'm trying to export some straight table to CSV file.&lt;/P&gt;&lt;P&gt;I read some discussion here or in other forums, and all suggested to use macro. &lt;/P&gt;&lt;P&gt;I did some tests following their suggestions, but in any case I've found a method that works.&lt;/P&gt;&lt;P&gt;Can someone explain the correct way to export one or more tables in a csv file ??&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 08:44:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680173#M669280</guid>
      <dc:creator />
      <dc:date>2014-10-08T08:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: Export to CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680174#M669282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One of the options on the STORE command is CSV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE &amp;lt;table&amp;gt; INTO C:\temp\table.csv (CSV);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 09:12:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680174#M669282</guid>
      <dc:creator>DavidFoster1</dc:creator>
      <dc:date>2014-10-08T09:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Export to CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680175#M669284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this simple macro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sub exportcsv&lt;/P&gt;&lt;P&gt;set sObject = ActiveDocument.GetSheetObject("CH04")&lt;/P&gt;&lt;P&gt;sObject.Export "c:\myfile.csv", ", "&lt;/P&gt;&lt;P&gt;end sub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where CH04 is the table you want to export&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 09:24:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680175#M669284</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-10-08T09:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: Export to CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680176#M669285</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;You need to use macro to export chart data to CSV or export the chart to excel and click Save As and select file type as CSV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;SUB ExportChartToCSV&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SET&amp;nbsp; objChart = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;objChart&lt;/SPAN&gt;.Export "C:\Data.CSV", ", "&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;END &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;SUB&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Oct 2014 09:30:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680176#M669285</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2014-10-08T09:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Export to CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680177#M669286</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;Just a minor correction. I think it should be:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;STORE &amp;lt;table&amp;gt; INTO C:\temp\table.csv &lt;STRONG&gt;(txt)&lt;/STRONG&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;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;Cheers,&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;Neil&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Nov 2014 09:56:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680177#M669286</guid>
      <dc:creator>ngulliver</dc:creator>
      <dc:date>2014-11-25T09:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Export to CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680178#M669287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to export chart data to csv for more than one chart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 07:23:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680178#M669287</guid>
      <dc:creator>deepakqlikview_123</dc:creator>
      <dc:date>2015-03-31T07:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Export to CSV</title>
      <link>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680179#M669288</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;SUB ExportChartToCSV&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SET&amp;nbsp; objChart = ActiveDocument.GetSheetObject("CH01")&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;objChart&lt;/SPAN&gt;.Export "C:\Data1.CSV", ", "&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;SET&amp;nbsp; objChart = ActiveDocument.GetSheetObject("CH02")&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;objChart&lt;/SPAN&gt;.Export "C:\Data2.CSV", ", "&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;SET&amp;nbsp; objChart = ActiveDocument.GetSheetObject("CH03")&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;objChart&lt;/SPAN&gt;.Export "C:\Data3.CSV", ", "&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;END &lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;SUB&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Note : One CSV file can hold only one table data.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Hope this help syou.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #ffffee;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 08:58:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Export-to-CSV/m-p/680179#M669288</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-03-31T08:58:19Z</dc:date>
    </item>
  </channel>
</rss>

