<?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 Match data to load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269420#M101063</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Anand. &lt;/P&gt;&lt;P&gt;You can use the exists() as a condition. &lt;/P&gt;&lt;P&gt;First, load all the Rets values that you want to use as a condition: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ValidRets:&lt;/P&gt;&lt;P&gt;load Rets&lt;/P&gt;&lt;P&gt;From ValidRets.xlsx (ooxml, embedded labels, table is Sheet1); //YOU NEED TO CREATE THIS FILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//THEN CHANGE THE CONDITION IN THE FOLLOWING LOAD&lt;/P&gt;&lt;P&gt;LOAD [Rets],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mins&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TestData.xlsx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where exists (Rets);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 12 Aug 2011 15:31:24 GMT</pubDate>
    <dc:creator>erichshiino</dc:creator>
    <dc:date>2011-08-12T15:31:24Z</dc:date>
    <item>
      <title>Match data to load</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269416#M101059</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;I have query where i want to load matched data in the applicaion all i desribe in the application. Like i want to load a data for Aer, Cer, Vert like ways i have 200 around of data. I want to load only this three types of data now and i want to load that matched dataon the field Rets. &lt;/P&gt;&lt;P&gt;Aer&lt;/P&gt;&lt;P&gt;Cer&lt;/P&gt;&lt;P&gt;Vert&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please provide any help how to do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I put this on load of query after the load statement like Where Rets='Aer' and Rets='Cer' and Rets='Vert' but i have 300 of different records for Rets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2011 13:14:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269416#M101059</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2011-08-12T13:14:25Z</dc:date>
    </item>
    <item>
      <title>Match data to load</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269417#M101060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Directory;&lt;/P&gt;&lt;P&gt;LOAD [Rets], &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mins&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;TestData.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;where [Rets] = 'Aer' or [Rets] = 'Cer' or [Rets] = 'Vert' &lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2011 13:42:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269417#M101060</guid>
      <dc:creator>klausskalts</dc:creator>
      <dc:date>2011-08-12T13:42:01Z</dc:date>
    </item>
    <item>
      <title>Match data to load</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269418#M101061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Klaus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks i do this thing but like&amp;nbsp; 'Aer' or 'Cer' or 'Vert' i have 300 different types of values so in this case i have to type 300 different values like&amp;nbsp; [Rets] = 'Aer' or [Rets] = 'Cer' or [Rets] = 'Vert' in this code. Any other idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2011 13:50:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269418#M101061</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2011-08-12T13:50:21Z</dc:date>
    </item>
    <item>
      <title>Match data to load</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269419#M101062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Klaus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose in my application there are 2000 types of [Rets] are loaded but i want to load only 300 types of [Rets] and this 300 are provided in excel file in a column and i want to load this 300 only. If want more information then i provide to all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2011 14:01:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269419#M101062</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2011-08-12T14:01:15Z</dc:date>
    </item>
    <item>
      <title>Match data to load</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269420#M101063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, Anand. &lt;/P&gt;&lt;P&gt;You can use the exists() as a condition. &lt;/P&gt;&lt;P&gt;First, load all the Rets values that you want to use as a condition: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ValidRets:&lt;/P&gt;&lt;P&gt;load Rets&lt;/P&gt;&lt;P&gt;From ValidRets.xlsx (ooxml, embedded labels, table is Sheet1); //YOU NEED TO CREATE THIS FILE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//THEN CHANGE THE CONDITION IN THE FOLLOWING LOAD&lt;/P&gt;&lt;P&gt;LOAD [Rets],&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Mins&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TestData.xlsx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where exists (Rets);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2011 15:31:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269420#M101063</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-08-12T15:31:24Z</dc:date>
    </item>
    <item>
      <title>Match data to load</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269421#M101064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Erich,&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Thanks for suggestion now it is works i want to ask will it be work for n no of records like 1000, 10000, 100000 of records in excel file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;Regards,&lt;/P&gt;&lt;P&gt;Anand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2011 18:48:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269421#M101064</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2011-08-12T18:48:12Z</dc:date>
    </item>
    <item>
      <title>Match data to load</title>
      <link>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269422#M101065</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sure&lt;/P&gt;&lt;P&gt;The exists is usually used for incremental reload. Sometimes we use it with millions of records. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 12 Aug 2011 19:09:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Match-data-to-load/m-p/269422#M101065</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-08-12T19:09:23Z</dc:date>
    </item>
  </channel>
</rss>

