<?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: Is it possible to export records into a CSV file using qlikview script? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899390#M312886</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I do not have the data in one table. I draw fields from multiple tables based on some logic and want to create a new table with the fields in a loop but I am not able to do that.So, I thought of writing the field values into a csv file and reload it as a table. I hope I am making sense here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Jun 2015 18:40:21 GMT</pubDate>
    <dc:creator>sasiparupudi1</dc:creator>
    <dc:date>2015-06-02T18:40:21Z</dc:date>
    <item>
      <title>Is it possible to export records into a CSV file using qlikview script?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899387#M312883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a situation where I am reading records from different tables and I want to write them into a CSV file. Please let me know if there is any way to achieve this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 18:27:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899387#M312883</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-06-02T18:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export records into a CSV file using qlikview script?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899388#M312884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the STORE statement at the end of your load script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE [myTable] INTO [myTable.CSV] (txt);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 18:34:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899388#M312884</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-06-02T18:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export records into a CSV file using qlikview script?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899389#M312885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the Edit Scripts you can use this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR i = 0 to NoOfTables() - 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vTableName = TableName($(i));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; LET vOutfile = '$(vTableName)' &amp;amp; '_' &amp;amp; '$(vPeriodo).csv';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; STORE [$(vTableName)] INTO [$(vOutfile)] (ansi, txt, delimiter is ';');&lt;/P&gt;&lt;P&gt;NEXT&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The script list all tables on the QVW and export a csv file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;King Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 18:37:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899389#M312885</guid>
      <dc:creator>ronald_gdi</dc:creator>
      <dc:date>2015-06-02T18:37:15Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export records into a CSV file using qlikview script?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899390#M312886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I do not have the data in one table. I draw fields from multiple tables based on some logic and want to create a new table with the fields in a loop but I am not able to do that.So, I thought of writing the field values into a csv file and reload it as a table. I hope I am making sense here.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 18:40:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899390#M312886</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-06-02T18:40:21Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export records into a CSV file using qlikview script?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899391#M312887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please post some sample data of your source tables and the expected resulting table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe there is no need for an export/import to achieve your intended data model.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Jun 2015 21:02:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899391#M312887</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-06-02T21:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export records into a CSV file using qlikview script?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899392#M312888</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp; Ronald&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your post and I learned a new trick . But I found the answer I am actually looking for in the following post where the data in the variables are loaded into a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/361986"&gt;Re: Generating a inline table with last date of each month of a year&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sasi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Jun 2015 06:45:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899392#M312888</guid>
      <dc:creator>sasiparupudi1</dc:creator>
      <dc:date>2015-06-03T06:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to export records into a CSV file using qlikview script?</title>
      <link>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899393#M312889</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Sasidhar.&lt;/P&gt;&lt;P&gt;Have a look at this short blog on exporting to CSV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="unlinked" title="http://www.quickintelligence.co.uk/write-csv-qlikview-store/"&gt;http://www.quickintelligence.co.uk/write-csv-qlikview-store/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Neil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Jun 2015 15:56:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Is-it-possible-to-export-records-into-a-CSV-file-using-qlikview/m-p/899393#M312889</guid>
      <dc:creator>ngulliver</dc:creator>
      <dc:date>2015-06-09T15:56:27Z</dc:date>
    </item>
  </channel>
</rss>

