<?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: Who ate my rows! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Who-ate-my-rows/m-p/756150#M1028112</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you use the Exists function you are saying where Username doesn't exist in Blah... I think that is causing your issue. This is directly from the help guide:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;exists(IDnr, IDnr)&lt;/SPAN&gt; returns -1 (true) if the value of the field IDnr in the current record already exists in any previously read record containing that field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 19 Feb 2015 17:59:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-02-19T17:59:16Z</dc:date>
    <item>
      <title>Who ate my rows!</title>
      <link>https://community.qlik.com/t5/QlikView/Who-ate-my-rows/m-p/756149#M1028111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hello Everyone, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am fighting a problem, and I am partly done with it.&amp;nbsp; However, I am confused about what is happening when I make a small change.&amp;nbsp; When I run my script like this, the resulting table is what I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_1424367342078636" jivemacro_uid="_1424367342078636" modifiedtitle="true"&gt;
&lt;P&gt;a:&lt;/P&gt;
&lt;P&gt;LOAD * Inline [&lt;/P&gt;
&lt;P&gt;Username, Code, Blah, Cookies,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, a , 1 , 4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, b , 2 , 4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, c, 3 , 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, d, 4 , 2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5, e, 5 , 63&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;/P&gt;
&lt;P&gt;TableWithMissingDataAdded:&lt;/P&gt;
&lt;P&gt;LOAD * Resident a&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;OUTER Join&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Username, Code, Blah&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, c, 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, d, 4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5, Seattle, Seahawks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10, j, 10&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 11, k, 11&lt;/P&gt;
&lt;P&gt;]&lt;/P&gt;
&lt;P&gt;where not exists(Username,Blah)&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP TABLE a&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT!&amp;nbsp; When I take that last "LOAD * INLINE.." and break it out into it's own table, my resulting table is missing {10,j,10} and {11,k,11}.&amp;nbsp; I'm not too sure what part of the process I'm not understanding correctly between the above code, and this code.&amp;nbsp; I assume something is being concatenated behind my back, but I don't know how to verify that with my little understanding..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warning: Row Eater Below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="xml" __jive_macro_name="code" class="_jivemacro_uid_14243676580921460 jive_text_macro jive_macro_code" jivemacro_uid="_14243676580921460" modifiedtitle="true"&gt;
&lt;P&gt;a:&lt;/P&gt;
&lt;P&gt;LOAD * Inline [&lt;/P&gt;
&lt;P&gt;Username, Code, Blah, Cookies,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, a , 1 , 4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, b , 2 , 4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, c, 3 , 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, d, 4 , 2&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5, e, 5 , 63&lt;/P&gt;
&lt;P&gt;];&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;b:&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;/P&gt;
&lt;P&gt;LOAD * INLINE [&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Username, Code, Blah&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, c, 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, d, 4&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5, Seattle, Seahawks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 10, j, 10&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 11, k, 11&lt;/P&gt;
&lt;P&gt;]&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;/P&gt;
&lt;P&gt;TableWithMissingDataAdded:&lt;/P&gt;
&lt;P&gt;LOAD * Resident a&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;OUTER Join&lt;/P&gt;
&lt;P&gt;LOAD * Resident b&lt;/P&gt;
&lt;P&gt;where not exists(Username,Blah)&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP TABLE a&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;DROP TABLE b&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;P&gt;DROP TABLE a&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;DROP TABLE b&lt;/P&gt;
&lt;P&gt;;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What on earth is the difference between the two.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is greatly appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 17:55:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Who-ate-my-rows/m-p/756149#M1028111</guid>
      <dc:creator>JustinDallas</dc:creator>
      <dc:date>2015-02-19T17:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Who ate my rows!</title>
      <link>https://community.qlik.com/t5/QlikView/Who-ate-my-rows/m-p/756150#M1028112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you use the Exists function you are saying where Username doesn't exist in Blah... I think that is causing your issue. This is directly from the help guide:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;exists(IDnr, IDnr)&lt;/SPAN&gt; returns -1 (true) if the value of the field IDnr in the current record already exists in any previously read record containing that field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 17:59:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Who-ate-my-rows/m-p/756150#M1028112</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-19T17:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Who ate my rows!</title>
      <link>https://community.qlik.com/t5/QlikView/Who-ate-my-rows/m-p/756151#M1028113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create a field as below in table a&lt;/P&gt;&lt;P&gt;Username&amp;amp;Blah as key&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now use&lt;/P&gt;&lt;P&gt;Where note exists(key, &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Username&amp;amp;Blah);&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 18:00:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Who-ate-my-rows/m-p/756151#M1028113</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2015-02-19T18:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Who ate my rows!</title>
      <link>https://community.qlik.com/t5/QlikView/Who-ate-my-rows/m-p/756152#M1028114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Manish! This was the answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCorrect.PNG" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/78602_QlikCorrect.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Feb 2015 20:02:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Who-ate-my-rows/m-p/756152#M1028114</guid>
      <dc:creator>JustinDallas</dc:creator>
      <dc:date>2015-02-19T20:02:31Z</dc:date>
    </item>
  </channel>
</rss>

