<?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 Resident Load Problem in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Resident-Load-Problem/m-p/144237#M23239</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would try this:&lt;/P&gt;&lt;P&gt;NoAddress:&lt;BR /&gt;LOAD&lt;BR /&gt; Users.User_id&lt;BR /&gt;RESIDENT Users WHERE not exists(Adresses.User_id, Users.User_id);&lt;/P&gt;&lt;P&gt;...will only work with qualified tables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 15 May 2009 20:55:18 GMT</pubDate>
    <dc:creator>rbecher</dc:creator>
    <dc:date>2009-05-15T20:55:18Z</dc:date>
    <item>
      <title>Resident Load Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Problem/m-p/144235#M23237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi *,&lt;/P&gt;&lt;P&gt;I have two tables and querry problem. I'm loading via RESIDENT:&lt;/P&gt;&lt;P&gt;&lt;B&gt;Users:&lt;/B&gt;&lt;/P&gt;&lt;P&gt;&lt;I&gt;User_id&lt;/I&gt;, User_Name,...&lt;BR /&gt;1, QWE&lt;BR /&gt;2, RTZ&lt;BR /&gt;3, UIO&lt;BR /&gt;4, PAS&lt;/P&gt;&lt;P&gt;&lt;B&gt;Adresses:&lt;BR /&gt;&lt;/B&gt; Adress_id, User_id, ...&lt;BR /&gt;1,1&lt;BR /&gt;2,2&lt;BR /&gt;4,4&lt;/P&gt;&lt;P&gt;So User 3 has no Adress.&lt;BR /&gt;I'd like to Resident Load only the the Users that don't have an adress like User 3.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 20:06:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Problem/m-p/144235#M23237</guid>
      <dc:creator />
      <dc:date>2009-05-15T20:06:14Z</dc:date>
    </item>
    <item>
      <title>Resident Load Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Problem/m-p/144236#M23238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are many ways to do that. One way I could quickly think is:&lt;/P&gt;&lt;P&gt;Users:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;User_id, User_Name&lt;BR /&gt;1, QWE&lt;BR /&gt;2, RTZ&lt;BR /&gt;3, UIO&lt;BR /&gt;4, PAS&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Adresses:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;Adress_id, User_id&lt;BR /&gt;1, 1&lt;BR /&gt;2, 2&lt;BR /&gt;4, 4&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;MapAddr:&lt;BR /&gt;MAPPING&lt;BR /&gt;LOAD DISTINCT&lt;BR /&gt; User_id as id,&lt;BR /&gt; Adress_id as ai&lt;BR /&gt;resident Adresses;&lt;/P&gt;&lt;P&gt;NoAddress:&lt;BR /&gt;LOAD&lt;BR /&gt; User_id, aid,&lt;BR /&gt; 1 as NoAddressFlag&lt;BR /&gt;where len(aid) = 0;&lt;BR /&gt;LOAD&lt;BR /&gt; User_id,&lt;BR /&gt; applymap('MapAddr', User_id, null()) as aid&lt;BR /&gt;resident Users;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 20:18:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Problem/m-p/144236#M23238</guid>
      <dc:creator>disqr_rm</dc:creator>
      <dc:date>2009-05-15T20:18:15Z</dc:date>
    </item>
    <item>
      <title>Resident Load Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Problem/m-p/144237#M23239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would try this:&lt;/P&gt;&lt;P&gt;NoAddress:&lt;BR /&gt;LOAD&lt;BR /&gt; Users.User_id&lt;BR /&gt;RESIDENT Users WHERE not exists(Adresses.User_id, Users.User_id);&lt;/P&gt;&lt;P&gt;...will only work with qualified tables&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 May 2009 20:55:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Problem/m-p/144237#M23239</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2009-05-15T20:55:18Z</dc:date>
    </item>
    <item>
      <title>Resident Load Problem</title>
      <link>https://community.qlik.com/t5/QlikView/Resident-Load-Problem/m-p/144238#M23240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;an easy way to go :&lt;/P&gt;&lt;P style="font-weight: bold"&gt;left join (Users) load User_id, count(Address_id) as Nb_address resident Adresses group by User_id;&lt;/P&gt;&lt;P&gt;You will know definitely who has no address with &lt;B&gt;isnull(Nb_address)&lt;/B&gt;, and who has more than one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 May 2009 17:17:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Resident-Load-Problem/m-p/144238#M23240</guid>
      <dc:creator>yblake</dc:creator>
      <dc:date>2009-05-16T17:17:23Z</dc:date>
    </item>
  </channel>
</rss>

