<?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 How to split data Row number wise in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106777#M366494</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 attached one sample application in which i have imported one excel file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i want to split this data on the basis of number of rows like by keeping a limit of 250 in a one file. Means 1 file is get saved of 250 and another of 250 and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me how i can do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 May 2016 16:33:01 GMT</pubDate>
    <dc:creator>pra_kale</dc:creator>
    <dc:date>2016-05-19T16:33:01Z</dc:date>
    <item>
      <title>How to split data Row number wise</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106777#M366494</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 attached one sample application in which i have imported one excel file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i want to split this data on the basis of number of rows like by keeping a limit of 250 in a one file. Means 1 file is get saved of 250 and another of 250 and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me how i can do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 16:33:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106777#M366494</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-05-19T16:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to split data Row number wise</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106778#M366495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You mean 150 rows from one file? Not sure I understand your question&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 16:42:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106778#M366495</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-05-19T16:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to split data Row number wise</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106779#M366496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you trying to load the excel file and then splitting the data every 250 rows and saving back to Excel ? Is that what you want ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 16:47:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106779#M366496</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2016-05-19T16:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to split data Row number wise</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106780#M366497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe this&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14636765878438587" jivemacro_uid="_14636765878438587"&gt;
&lt;P&gt;A:&lt;/P&gt;
&lt;P&gt;LOAD RowNo() as row,&lt;/P&gt;
&lt;P&gt;PolicyNo&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;[test.xlsx]&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;LET file=0;&lt;/P&gt;
&lt;P&gt;LET count=NoOfRows('A');&lt;/P&gt;
&lt;P&gt;DO WHILE count &amp;gt; 0 &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; t:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; FIRST (250) &lt;/P&gt;
&lt;P&gt;&amp;nbsp; LOAD &lt;/P&gt;
&lt;P&gt;&amp;nbsp; PolicyNo&lt;/P&gt;
&lt;P&gt;&amp;nbsp; resident A&lt;/P&gt;
&lt;P&gt;&amp;nbsp; where row &amp;gt; $(file)*250 and row &amp;lt; ($(file)+1)*250;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; store t into f$(file).txt(txt);&lt;/P&gt;
&lt;P&gt;&amp;nbsp; drop Table t;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; LET count = $(count) - 250;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; LET file = $(file) + 1;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;LOOP;&lt;/P&gt;
&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 16:49:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106780#M366497</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2016-05-19T16:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to split data Row number wise</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106781#M366498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be check this&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/docs/DOC-3890"&gt;Paging Implementation for Straight table&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 16:49:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106781#M366498</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2016-05-19T16:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to split data Row number wise</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106782#M366499</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;Thanks all for your help!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In real scenario i am having a data more than 15 to 20 lacs, it may increase also, as i want to share data in to .xlsx file i required to split the data into 5 lacs records. E.g. If my records are 20 lacs then i will get the the 5 files containing 5 lacs records in each file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Anjos.. code is working perfectly. I have made only one change instead of .text i have put .csv and it is working perfectly. But if i want to save the file into .xlsx whether it is possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 18:01:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106782#M366499</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-05-19T18:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to split data Row number wise</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106783#M366500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No you cannot store in xlsx. You can only store it in QVD, CSV or TXT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 18:16:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106783#M366500</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2016-05-19T18:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to split data Row number wise</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106784#M366501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Unfortunately exporting to xls(x) is not a native feature&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 May 2016 18:28:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106784#M366501</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2016-05-19T18:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to split data Row number wise</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106785#M366502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok. Once again Thanks for Help...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 May 2016 01:46:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1106785#M366502</guid>
      <dc:creator>pra_kale</dc:creator>
      <dc:date>2016-05-20T01:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to split data Row number wise</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1694727#M450853</link>
      <description>&lt;P&gt;Thanks a lot for the Solution...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am checking for the sample for the same and found the solution is clear.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Apr 2020 16:26:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-split-data-Row-number-wise/m-p/1694727#M450853</guid>
      <dc:creator>lakshmanvepuri</dc:creator>
      <dc:date>2020-04-19T16:26:19Z</dc:date>
    </item>
  </channel>
</rss>

