<?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 Select Certain rows and store into excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Select-Certain-rows-and-store-into-excel/m-p/658498#M675398</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 an excel spread sheet , on the spreadsheet there is about 120 000 rows only with telephone numbers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to break this spread sheet up into segments of 4000 numbers and store them into separate spread sheets&lt;/P&gt;&lt;P&gt;so I should end up with 30 Spread sheets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My 1st issue is that when do a where clause , " Where Rowno () &amp;lt; 4000" it works&lt;/P&gt;&lt;P&gt;but when I say "Where&amp;nbsp; Rowno () &amp;gt; 4000 and Rowno () &amp;lt; 8000" it doesnt seem to bring anything back&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also I need to store each 4000 segment into a spread sheet &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Store [1st4000] into &lt;C&gt; " it does store it into the file, but when you open it it says it is corrupt&lt;/C&gt;&lt;/P&gt;&lt;P&gt;what am I doing wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Jul 2014 08:18:34 GMT</pubDate>
    <dc:creator>rido1421</dc:creator>
    <dc:date>2014-07-11T08:18:34Z</dc:date>
    <item>
      <title>Select Certain rows and store into excel</title>
      <link>https://community.qlik.com/t5/QlikView/Select-Certain-rows-and-store-into-excel/m-p/658498#M675398</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 an excel spread sheet , on the spreadsheet there is about 120 000 rows only with telephone numbers&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to break this spread sheet up into segments of 4000 numbers and store them into separate spread sheets&lt;/P&gt;&lt;P&gt;so I should end up with 30 Spread sheets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My 1st issue is that when do a where clause , " Where Rowno () &amp;lt; 4000" it works&lt;/P&gt;&lt;P&gt;but when I say "Where&amp;nbsp; Rowno () &amp;gt; 4000 and Rowno () &amp;lt; 8000" it doesnt seem to bring anything back&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also I need to store each 4000 segment into a spread sheet &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"Store [1st4000] into &lt;C&gt; " it does store it into the file, but when you open it it says it is corrupt&lt;/C&gt;&lt;/P&gt;&lt;P&gt;what am I doing wrong?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 08:18:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-Certain-rows-and-store-into-excel/m-p/658498#M675398</guid>
      <dc:creator>rido1421</dc:creator>
      <dc:date>2014-07-11T08:18:34Z</dc:date>
    </item>
    <item>
      <title>Re: Select Certain rows and store into excel</title>
      <link>https://community.qlik.com/t5/QlikView/Select-Certain-rows-and-store-into-excel/m-p/658499#M675399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;adapt to your requirement, some suggestions&lt;/P&gt;&lt;P&gt;- you can store in qvd and txt&lt;/P&gt;&lt;P&gt;- I use recno, see the online help for difference between recno and rowno&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i = 1 to 10 step 4&lt;/P&gt;&lt;P&gt;&amp;nbsp; trace $(i);&lt;/P&gt;&lt;P&gt;&amp;nbsp; t:&lt;/P&gt;&lt;P&gt;&amp;nbsp; LOAD phone&lt;/P&gt;&lt;P&gt;&amp;nbsp; FROM aaaa.xlsx (ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;&amp;nbsp; where recno() &amp;gt;= $(i) and recno()&amp;lt; ($(i)+4)&lt;/P&gt;&lt;P&gt;&amp;nbsp; ;&lt;/P&gt;&lt;P&gt;&amp;nbsp; STORE t into t_$(i).csv (txt);&lt;/P&gt;&lt;P&gt;&amp;nbsp; DROP Table t;&lt;/P&gt;&lt;P&gt;NEXT;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 08:36:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-Certain-rows-and-store-into-excel/m-p/658499#M675399</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-07-11T08:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Select Certain rows and store into excel</title>
      <link>https://community.qlik.com/t5/QlikView/Select-Certain-rows-and-store-into-excel/m-p/658500#M675400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you , this seems to be working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ridhaa Hendricks&lt;/P&gt;&lt;P&gt;Data Analyst&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;0842276595&lt;/P&gt;&lt;P&gt;r.hendricks@cellc.co.za&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;This email and its contents are subject to our email legal notice which can be viewed at http://www.cellc.co.za/dl/cms/downloads/Email_legal_notice.pdf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 08:47:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-Certain-rows-and-store-into-excel/m-p/658500#M675400</guid>
      <dc:creator>rido1421</dc:creator>
      <dc:date>2014-07-11T08:47:20Z</dc:date>
    </item>
    <item>
      <title>Re: Select Certain rows and store into excel</title>
      <link>https://community.qlik.com/t5/QlikView/Select-Certain-rows-and-store-into-excel/m-p/658501#M675401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you think you get the answer, please close this discussion by giving Correct and Helpful answers to the posts which are useful for you.&amp;nbsp; It helps others in finding answers for similar scenarios. Thanks and good Qlik.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2014 09:10:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Select-Certain-rows-and-store-into-excel/m-p/658501#M675401</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-07-11T09:10:06Z</dc:date>
    </item>
  </channel>
</rss>

