<?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: .CSV file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940436#M982434</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;A CSV file can store only one table details, if you want to store columns from different tables into a single CSV then join all the required tables and store it in CSV using STORE command.&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;TableName:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM DataSource1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;*&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;FROM DataSource2;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;STORE Column1, Column2, Column3, Column4, Column5, Column6 FROM &lt;SPAN style="font-size: 13.3333330154419px;"&gt;TableName &lt;/SPAN&gt;INTO FileName.CSV;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Aug 2015 01:22:57 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2015-08-18T01:22:57Z</dc:date>
    <item>
      <title>.CSV file</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940431#M982429</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;I have 6 tables in my datamodel, I need to save around 10fields from these 6 tables into .csv file instead of .qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i store fields from different tables into one .csv file?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 19:14:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940431#M982429</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-08-17T19:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: .CSV file</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940432#M982430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to join your tables, building a temp table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmp:&lt;/P&gt;&lt;P&gt;LOAD field1, field2 resident Table1;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;JOIN LOAD field1, field3 &lt;SPAN style="font-size: 13.3333330154419px;"&gt;resident &lt;/SPAN&gt;Table3;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;join LOAD field1, field5 &lt;SPAN style="font-size: 13.3333330154419px;"&gt;resident &lt;/SPAN&gt;Table4;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Store tmp into tmp.csv(txt);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;drop table tmp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 19:21:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940432#M982430</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2015-08-17T19:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: .CSV file</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940433#M982431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Concatenate your resident tables into a single table using &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORT:&lt;/P&gt;&lt;P&gt;LOAD * RESIDENT Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE &lt;/P&gt;&lt;P&gt;LOAD * RESIDENT Table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then store to a file&lt;/P&gt;&lt;P&gt;STORE EXPORT INTO Export.csv (txt);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 19:22:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940433#M982431</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-08-17T19:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: .CSV file</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940434#M982432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QlikView store use one table.&lt;/P&gt;&lt;P&gt;If you want to store fields from different tables you have to load all fields (concatenate ?) in a single table and then store.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;an example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;file:&lt;/P&gt;&lt;P&gt;load field1 resident table1;&lt;/P&gt;&lt;P&gt;concatenate (file) load field2, field3 resident table2;&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;concatenate (file) load field10 resident table10;&lt;/P&gt;&lt;P&gt;store * from file into file.csv (txt);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2015 19:23:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940434#M982432</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-08-17T19:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: .CSV file</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940435#M982433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can store table as txt file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Table into output.csv (txt) ;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 00:42:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940435#M982433</guid>
      <dc:creator />
      <dc:date>2015-08-18T00:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: .CSV file</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940436#M982434</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;A CSV file can store only one table details, if you want to store columns from different tables into a single CSV then join all the required tables and store it in CSV using STORE command.&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;TableName:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM DataSource1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;*&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;FROM DataSource2;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;STORE Column1, Column2, Column3, Column4, Column5, Column6 FROM &lt;SPAN style="font-size: 13.3333330154419px;"&gt;TableName &lt;/SPAN&gt;INTO FileName.CSV;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 01:22:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940436#M982434</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-08-18T01:22:57Z</dc:date>
    </item>
    <item>
      <title>Re: .CSV file</title>
      <link>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940437#M982435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think , it is better to use at the end of the data model in a new tab. Better to drop the table after store.Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #0000ff;"&gt;TableName:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD *&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #0000ff;"&gt;FROM DataSource1;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #0000ff;"&gt;LEFT JOIN&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #0000ff;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #0000ff;"&gt;* FROM DataSource2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #0000ff;"&gt;STORE Column1, Column2, Column3, Column4, Column5, Column6 FROM &lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 13.3333330154419px; font-family: inherit;"&gt;TableName &lt;/SPAN&gt;INTO FileName.CSV(TXT);&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #0000ff;"&gt;DROP TABLE &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;TableName;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Aug 2015 02:08:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/CSV-file/m-p/940437#M982435</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-08-18T02:08:22Z</dc:date>
    </item>
  </channel>
</rss>

