<?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 Add Data with same fields when excel rows limit(10 Million rows) expires in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330370#M28992</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 am manually uploading the excel files in the QlikSense script to update the data in my QlikSense app.&lt;/P&gt;&lt;P&gt;One of the excel files has reached its maximum rows: 10 million rows beyond which no data could be added.&lt;/P&gt;&lt;P&gt;Still i want to add data to this table and show it up in qlik sense app.&lt;/P&gt;&lt;P&gt;Example : A table created out of my excel file has data from January to March month 2017 with 10 M rows.&lt;/P&gt;&lt;P&gt;Now I have data from April 2017 which i could not upload on the existing excel file as the data rows have reached the limit.&lt;/P&gt;&lt;P&gt;So, I created a new excel file with similar fields(column values) but only difference is the data is added from April month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i combine these two excel files into into one in QlikSense script so that the rows from new excel file adds to rows in old excel file ???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Apr 2017 13:12:03 GMT</pubDate>
    <dc:creator>amanjain57</dc:creator>
    <dc:date>2017-04-03T13:12:03Z</dc:date>
    <item>
      <title>Add Data with same fields when excel rows limit(10 Million rows) expires</title>
      <link>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330370#M28992</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 am manually uploading the excel files in the QlikSense script to update the data in my QlikSense app.&lt;/P&gt;&lt;P&gt;One of the excel files has reached its maximum rows: 10 million rows beyond which no data could be added.&lt;/P&gt;&lt;P&gt;Still i want to add data to this table and show it up in qlik sense app.&lt;/P&gt;&lt;P&gt;Example : A table created out of my excel file has data from January to March month 2017 with 10 M rows.&lt;/P&gt;&lt;P&gt;Now I have data from April 2017 which i could not upload on the existing excel file as the data rows have reached the limit.&lt;/P&gt;&lt;P&gt;So, I created a new excel file with similar fields(column values) but only difference is the data is added from April month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i combine these two excel files into into one in QlikSense script so that the rows from new excel file adds to rows in old excel file ???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:12:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330370#M28992</guid>
      <dc:creator>amanjain57</dc:creator>
      <dc:date>2017-04-03T13:12:03Z</dc:date>
    </item>
    <item>
      <title>Re: Add Data with same fields when excel rows limit(10 Million rows) expires</title>
      <link>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330371#M28993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aman,&lt;/P&gt;&lt;P&gt;You can create a variable with a mask and use it on FROM sentence:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET vsFile = 'SALES_????_??_??.xlsx';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM $(&lt;SPAN style="font-size: 13.3333px;"&gt;vsFile&lt;/SPAN&gt;) (file_parameters) ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it serves!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:19:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330371#M28993</guid>
      <dc:creator>hector_munoz</dc:creator>
      <dc:date>2017-04-03T13:19:04Z</dc:date>
    </item>
    <item>
      <title>Re: Add Data with same fields when excel rows limit(10 Million rows) expires</title>
      <link>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330372#M28994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Munoz,&lt;/P&gt;&lt;P&gt;But I have two files.&lt;/P&gt;&lt;P&gt;File 1 - data from January- March&lt;/P&gt;&lt;P&gt;File 2- April and beyond&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Can you explain what do you mean by mask and why do we need to do that?&lt;/P&gt;&lt;P&gt;2. When Loading you are loading only the (vsFile), what about the other file i need to ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So basically how are we combining the tables so that first all the rows from File 1 appears with same columns and then all the rows from File 2 appears with same columns.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:25:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330372#M28994</guid>
      <dc:creator>amanjain57</dc:creator>
      <dc:date>2017-04-03T13:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: Add Data with same fields when excel rows limit(10 Million rows) expires</title>
      <link>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330373#M28995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aman,&lt;/P&gt;&lt;P&gt;Then you would have to use an alternative way to name the files: eg SALES_2017_01.xlsx (january-march), &lt;SPAN style="font-size: 13.3333px;"&gt;SALES_2017_02.xlsx&lt;/SPAN&gt; (for april and may), ...&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:30:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330373#M28995</guid>
      <dc:creator>hector_munoz</dc:creator>
      <dc:date>2017-04-03T13:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Add Data with same fields when excel rows limit(10 Million rows) expires</title>
      <link>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330374#M28996</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;you can try like this;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From File1;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Load *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From File 2;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:33:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330374#M28996</guid>
      <dc:creator>aarkay29</dc:creator>
      <dc:date>2017-04-03T13:33:08Z</dc:date>
    </item>
    <item>
      <title>Re: Add Data with same fields when excel rows limit(10 Million rows) expires</title>
      <link>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330375#M28997</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, that's understood.&lt;/P&gt;&lt;P&gt;But how do i combine this two files ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:33:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330375#M28997</guid>
      <dc:creator>amanjain57</dc:creator>
      <dc:date>2017-04-03T13:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Add Data with same fields when excel rows limit(10 Million rows) expires</title>
      <link>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330376#M28998</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aar Kay,&lt;/P&gt;&lt;P&gt;This seems easy, I will try out this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:35:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330376#M28998</guid>
      <dc:creator>amanjain57</dc:creator>
      <dc:date>2017-04-03T13:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Add Data with same fields when excel rows limit(10 Million rows) expires</title>
      <link>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330377#M28999</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;What Aar Kay proposes is a solution but ou have to touch script every time a new file exists... I attach you a sample with the solution I proposed... Another solutiong would pass using FOR EACH loop...&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 13:57:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330377#M28999</guid>
      <dc:creator>hector_munoz</dc:creator>
      <dc:date>2017-04-03T13:57:18Z</dc:date>
    </item>
    <item>
      <title>Re: Add Data with same fields when excel rows limit(10 Million rows) expires</title>
      <link>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330378#M29000</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Munoz,&lt;/P&gt;&lt;P&gt;I will try both of the suggestions and let you and Aar Kay know the results I am getting&lt;/P&gt;&lt;P&gt;You are right that i need to concatenate every time their is a new file.&lt;/P&gt;&lt;P&gt;Probably a for loop or anything else would work better for future.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Apr 2017 14:02:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Add-Data-with-same-fields-when-excel-rows-limit-10-Million-rows/m-p/1330378#M29000</guid>
      <dc:creator>amanjain57</dc:creator>
      <dc:date>2017-04-03T14:02:56Z</dc:date>
    </item>
  </channel>
</rss>

