<?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 Exclude rows in load statement in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-rows-in-load-statement/m-p/765730#M663696</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm loading data based on phone numbers from a file to analyse. The purpose is basically sorting the data(number of rows) down to dates. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That isn't a problem but what I want to do first, preferably in the load, is to exclude the first 10 rows imported for each distinct phone number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Jan 2015 18:37:38 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-01-09T18:37:38Z</dc:date>
    <item>
      <title>Exclude rows in load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-rows-in-load-statement/m-p/765730#M663696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm loading data based on phone numbers from a file to analyse. The purpose is basically sorting the data(number of rows) down to dates. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That isn't a problem but what I want to do first, preferably in the load, is to exclude the first 10 rows imported for each distinct phone number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Jon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 18:37:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-rows-in-load-statement/m-p/765730#M663696</guid>
      <dc:creator />
      <dc:date>2015-01-09T18:37:38Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude rows in load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-rows-in-load-statement/m-p/765731#M663697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM source&lt;/P&gt;&lt;P&gt;Where Autonumber(RecNo(),[phone number]) &amp;gt; 10;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jan 2015 19:29:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-rows-in-load-statement/m-p/765731#M663697</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-01-09T19:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude rows in load statement</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-rows-in-load-statement/m-p/765732#M663698</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;May be try something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//Just the telephone number with distinct. This will give the number of DISTINCT tel number&lt;/P&gt;&lt;P&gt;Final_Table:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Distinct&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Telephone Number]&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[Telephone Number Data.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Worksheet)&lt;/P&gt;&lt;P&gt;WHERE AutoNumber(RecNo())&amp;gt;10;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then&lt;/P&gt;&lt;P&gt;//Left Join the rest of the fields with the 1st load&lt;/P&gt;&lt;P&gt; LEFT JOIN(Final_Table)&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Telephone Number]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ,[Customer Name], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Country, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[Telephone Number Data.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Worksheet)&lt;/P&gt;&lt;P&gt;WHERE Exists([Telephone Number])&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 11 Jan 2015 23:14:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-rows-in-load-statement/m-p/765732#M663698</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2015-01-11T23:14:07Z</dc:date>
    </item>
  </channel>
</rss>

