<?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: Apply conditions to tables created from QVDs in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Apply-conditions-to-tables-created-from-QVDs/m-p/1948146#M78145</link>
    <description>&lt;P&gt;Hi, these tables doens't have anuy common field, it's that the way they are loading in the real data?&lt;/P&gt;
&lt;P&gt;If there is a common field you can use a mapping table and applymap to filter the data joined from FILE_B.&lt;/P&gt;
&lt;P&gt;If you really want a combination of all rows from one qvd to all of the other that meet the condition you can join them all and then aply the condition using a resident table:&lt;/P&gt;
&lt;P&gt;END_BIG_TABLE:&lt;/P&gt;
&lt;P&gt;NoConcatenate LOAD * Resident&amp;nbsp;&lt;SPAN&gt;BIG_TABLE&amp;nbsp;WHERE A2 &amp;lt;= B3;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;DROP Table&amp;nbsp;BIG_TABLE ;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;But maybe you need a lot of RAM and Time to do this load.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If A2 doesn'thave too many different values you can do a bucle to load using an iteration for each value of A2 so each iteration only load the needed value, saving RAM needed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 25 Jun 2022 07:13:46 GMT</pubDate>
    <dc:creator>rubenmarin</dc:creator>
    <dc:date>2022-06-25T07:13:46Z</dc:date>
    <item>
      <title>Apply conditions to tables created from QVDs</title>
      <link>https://community.qlik.com/t5/App-Development/Apply-conditions-to-tables-created-from-QVDs/m-p/1948093#M78138</link>
      <description>&lt;P&gt;Hello community, I have a question about how to apply a condition, I am currently building an application that is based on a table (BIG_TABLE) formed from QVDs:&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;[BIG_TABLE];&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;LOAD&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; A1&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; A2&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; A3&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;FROM&lt;/SPAN&gt;&lt;SPAN&gt; [FILE_A.qvd](qvd);&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;INNER JOIN(BIG_TABLE)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;BR /&gt;
&lt;DIV&gt;&lt;SPAN&gt;LOAD&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; B1&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; B2&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; B3&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;FROM&lt;/SPAN&gt;&lt;SPAN&gt; [FILE_B.qvd](qvd);&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;I need to apply to the table formed BIG_TABLE, the following condition:&lt;BR /&gt;&lt;STRONG&gt;WHERE A2 &amp;lt;= B3&lt;/STRONG&gt;, note that both fields come from different tables, how can I do this in Qlik Sense?&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 24 Jun 2022 20:05:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Apply-conditions-to-tables-created-from-QVDs/m-p/1948093#M78138</guid>
      <dc:creator>iJuanico</dc:creator>
      <dc:date>2022-06-24T20:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Apply conditions to tables created from QVDs</title>
      <link>https://community.qlik.com/t5/App-Development/Apply-conditions-to-tables-created-from-QVDs/m-p/1948146#M78145</link>
      <description>&lt;P&gt;Hi, these tables doens't have anuy common field, it's that the way they are loading in the real data?&lt;/P&gt;
&lt;P&gt;If there is a common field you can use a mapping table and applymap to filter the data joined from FILE_B.&lt;/P&gt;
&lt;P&gt;If you really want a combination of all rows from one qvd to all of the other that meet the condition you can join them all and then aply the condition using a resident table:&lt;/P&gt;
&lt;P&gt;END_BIG_TABLE:&lt;/P&gt;
&lt;P&gt;NoConcatenate LOAD * Resident&amp;nbsp;&lt;SPAN&gt;BIG_TABLE&amp;nbsp;WHERE A2 &amp;lt;= B3;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;DROP Table&amp;nbsp;BIG_TABLE ;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;But maybe you need a lot of RAM and Time to do this load.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If A2 doesn'thave too many different values you can do a bucle to load using an iteration for each value of A2 so each iteration only load the needed value, saving RAM needed.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 25 Jun 2022 07:13:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Apply-conditions-to-tables-created-from-QVDs/m-p/1948146#M78145</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2022-06-25T07:13:46Z</dc:date>
    </item>
  </channel>
</rss>

