<?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: loading records in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/loading-records/m-p/999199#M973743</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can do it in many ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one of the way is introduce recno() in the load table and in the resident load use a where condition with the&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(recno() &amp;gt;=20 and recno()&amp;lt;=30)&amp;nbsp; and&lt;/P&gt;&lt;P&gt;(recno() &amp;gt;=50 and recno()&amp;lt;=60) and&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(recno() &amp;gt;=70 and recno()&amp;lt;=80);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;else you can use the values that are to be loaded in an inline table ans use that in the where exists().&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;hope this helps.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;thanks,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Padmanabhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Sep 2015 08:44:09 GMT</pubDate>
    <dc:creator>padmanabhan_ram</dc:creator>
    <dc:date>2015-09-09T08:44:09Z</dc:date>
    <item>
      <title>loading records</title>
      <link>https://community.qlik.com/t5/QlikView/loading-records/m-p/999195#M973739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 1 table in that 100 records are there&amp;nbsp; now my req is load 20 to 30 records ,50 to 60,70 to 80 how i can get it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 05:14:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-records/m-p/999195#M973739</guid>
      <dc:creator>prabhas277</dc:creator>
      <dc:date>2015-09-09T05:14:07Z</dc:date>
    </item>
    <item>
      <title>Re: loading records</title>
      <link>https://community.qlik.com/t5/QlikView/loading-records/m-p/999196#M973740</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD * WHERE match(left(RecNo,1),'2','5','7')&lt;/P&gt;&lt;P&gt;LOAD *, RecNo() as RecNo;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM source_table;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 05:18:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-records/m-p/999196#M973740</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2015-09-09T05:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: loading records</title>
      <link>https://community.qlik.com/t5/QlikView/loading-records/m-p/999197#M973741</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be&amp;nbsp; like this&lt;/P&gt;&lt;P&gt;Rec:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load RecNo() As Rec&lt;/P&gt;&lt;P&gt;, Record ;&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Record&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 20&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 30&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 40&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 50&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 60&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 70&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 80&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 90&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 100&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;Where RecNo()&amp;gt; 4 and RecNo() &amp;lt;7 or RecNo() &amp;gt;1 and RecNo()&amp;lt;3;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 05:48:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-records/m-p/999197#M973741</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-09T05:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: loading records</title>
      <link>https://community.qlik.com/t5/QlikView/loading-records/m-p/999198#M973742</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is it possible by using exists function?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 08:36:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-records/m-p/999198#M973742</guid>
      <dc:creator>prabhas277</dc:creator>
      <dc:date>2015-09-09T08:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: loading records</title>
      <link>https://community.qlik.com/t5/QlikView/loading-records/m-p/999199#M973743</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can do it in many ways.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;one of the way is introduce recno() in the load table and in the resident load use a where condition with the&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(recno() &amp;gt;=20 and recno()&amp;lt;=30)&amp;nbsp; and&lt;/P&gt;&lt;P&gt;(recno() &amp;gt;=50 and recno()&amp;lt;=60) and&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;(recno() &amp;gt;=70 and recno()&amp;lt;=80);&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;else you can use the values that are to be loaded in an inline table ans use that in the where exists().&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;hope this helps.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;thanks,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Padmanabhan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 08:44:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-records/m-p/999199#M973743</guid>
      <dc:creator>padmanabhan_ram</dc:creator>
      <dc:date>2015-09-09T08:44:09Z</dc:date>
    </item>
    <item>
      <title>Re: loading records</title>
      <link>https://community.qlik.com/t5/QlikView/loading-records/m-p/999200#M973744</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;Try like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM DataSource&lt;/P&gt;&lt;P&gt;WHERE (RecNo() &amp;gt;=20 AND &lt;SPAN style="font-size: 13.3333330154419px;"&gt;RecNo&lt;/SPAN&gt;() &amp;lt;=30)&amp;nbsp; OR &lt;SPAN style="font-size: 13.3333330154419px;"&gt; (RecNo() &amp;gt;=50 AND &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;RecNo&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;() &amp;lt;=60)&amp;nbsp; OR &lt;SPAN style="font-size: 13.3333330154419px;"&gt; (RecNo() &amp;gt;=70 AND &lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;RecNo&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;() &amp;lt;=80) ;&lt;/SPAN&gt;&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;It is not possible with Exists, if you want to use Exists() then you have load this numbers in another and need to use that column in Exists.&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;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Jagan.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 08:52:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-records/m-p/999200#M973744</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-09-09T08:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: loading records</title>
      <link>https://community.qlik.com/t5/QlikView/loading-records/m-p/999201#M973745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Please try like this:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Hope this will help you.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;Script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture1.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/98341_Capture1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;OUTPut:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/98342_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Sep 2015 08:53:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-records/m-p/999201#M973745</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-09-09T08:53:59Z</dc:date>
    </item>
  </channel>
</rss>

