<?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: Limited Data Loading in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970269#M967024</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for you help&lt;/P&gt;&lt;P&gt;it is working...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Oct 2015 07:35:36 GMT</pubDate>
    <dc:creator />
    <dc:date>2015-10-02T07:35:36Z</dc:date>
    <item>
      <title>Limited Data Loading</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970260#M967015</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi I have two different files, one file is have transaction and other file is have country details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in that having around 10 countries but I want only 2 countries information should be loaded when the time data load into Qlikview(QVW) file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I get that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help me&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Sep 2015 13:00:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970260#M967015</guid>
      <dc:creator />
      <dc:date>2015-09-30T13:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Data Loading</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970261#M967016</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;you should look at a WHERE clause, which you can use to restrict the load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would look in the help files for more details on the where clause, but basically an example would look like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;FieldA,&lt;/P&gt;&lt;P&gt;FieldB,&lt;/P&gt;&lt;P&gt;Country&lt;/P&gt;&lt;P&gt;From (filename) where Country='UK' or where Country='Spain';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would help, but please do check the help file for more exact examples.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please mark this as helpful if this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Sep 2015 13:03:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970261#M967016</guid>
      <dc:creator>mjm</dc:creator>
      <dc:date>2015-09-30T13:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Data Loading</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970262#M967017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;FROM transaction.txt (txt)&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Match( Country , 'India' , 'USA' );&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; *&lt;/P&gt;&lt;P&gt;FROM country_details.txt (txt)&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Match( Country , 'India' , 'USA' );&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Sep 2015 13:03:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970262#M967017</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-09-30T13:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Data Loading</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970263#M967018</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 am not sure I understand what you are looking for but if you have a Country field to link the 2 datasets you could either do a left join from the transaction table which would result in a single table in your data model or you could try using the EXISTS() function on the where clause of the Country dataset to drop all the unrelated Countries.&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;Cesar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Sep 2015 13:03:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970263#M967018</guid>
      <dc:creator>cesaraccardi</dc:creator>
      <dc:date>2015-09-30T13:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Data Loading</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970264#M967019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Small correction:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;FieldA,&lt;/P&gt;&lt;P&gt;FieldB,&lt;/P&gt;&lt;P&gt;Country&lt;/P&gt;&lt;P&gt;From (filename) where Country='UK' or &lt;SPAN style="text-decoration: line-through;"&gt;where&lt;/SPAN&gt; Country='Spain';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Sep 2015 13:04:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970264#M967019</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2015-09-30T13:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Data Loading</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970265#M967020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please check this example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;COUNTRY_Data:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;COUNTRY_ID,COUNTRY,SALES&lt;/P&gt;&lt;P&gt;1,Afghanistan,10&lt;/P&gt;&lt;P&gt;2,Albania,20&lt;/P&gt;&lt;P&gt;3,Algeria,30&lt;/P&gt;&lt;P&gt;4,Andorra,40&lt;/P&gt;&lt;P&gt;5,Angola,50&lt;/P&gt;&lt;P&gt;6,Antigua and Barbuda,60&lt;/P&gt;&lt;P&gt;7,Argentina,70&lt;/P&gt;&lt;P&gt;8,Armenia,80&lt;/P&gt;&lt;P&gt;9,Aruba,90&lt;/P&gt;&lt;P&gt;10,Australia,100]&lt;/P&gt;&lt;P&gt;where WildMatch(COUNTRY,'Afghanistan','Angola','Australia');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/100518_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture1.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/100519_Capture1.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Sep 2015 13:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970265#M967020</guid>
      <dc:creator>qlikviewwizard</dc:creator>
      <dc:date>2015-09-30T13:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Data Loading</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970266#M967021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All, thanks for you response...&lt;/P&gt;&lt;P&gt;it is working when both tables having the country details. i'll give some more explanation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1st table having: Branch_code, country_code, country_name.&lt;/P&gt;&lt;P&gt;2nd table is a concatenate table which is join 1st table based on "Branch_code".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2nd table does not having country only having Branch_code information. when tried the above solution it was not worked. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please give some more clarification...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2015 01:44:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970266#M967021</guid>
      <dc:creator />
      <dc:date>2015-10-02T01:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Data Loading</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970267#M967022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Country,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; BranchCode,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM country_details.txt (txt)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Match( Country , 'India' , 'USA' );&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; .......&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; transactions.txt (txt)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;WHERE&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exists('BranchCode',BranchCode);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2015 04:53:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970267#M967022</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2015-10-02T04:53:21Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Data Loading</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970268#M967023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;EM&gt;&amp;gt;&amp;gt; WHERE&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;&amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exists('BranchCode',BranchCode);&lt;/EM&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;EM&gt;WHERE Exists(BranchCode);&amp;nbsp;&amp;nbsp; &lt;/EM&gt;&lt;SPAN style="line-height: 1.5em;"&gt;should suffice &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2015 05:16:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970268#M967023</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-10-02T05:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Limited Data Loading</title>
      <link>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970269#M967024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all for you help&lt;/P&gt;&lt;P&gt;it is working...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Oct 2015 07:35:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Limited-Data-Loading/m-p/970269#M967024</guid>
      <dc:creator />
      <dc:date>2015-10-02T07:35:36Z</dc:date>
    </item>
  </channel>
</rss>

