<?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: OuterJoin inline in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1513808#M508912</link>
    <description>&lt;P&gt;I would use applymap() rather than joins.&amp;nbsp; The mapping tables in the example below have a data in a slightly dfferent sequence to your original loads, but give the answer you are looking for,&lt;/P&gt;&lt;P&gt;C_Map:&lt;BR /&gt;mapping LOAD * INLINE [&lt;BR /&gt;A,C&lt;BR /&gt;1, xx&lt;BR /&gt;4, yy&lt;BR /&gt;2, cc&lt;BR /&gt;6, ee&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;D_Map:&lt;BR /&gt;mapping LOAD * INLINE [&lt;BR /&gt;A,D&lt;BR /&gt;2, dd&lt;BR /&gt;6, ff&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Tableuno:&lt;BR /&gt;load *&lt;BR /&gt;where C &amp;gt; '' and D &amp;gt; '' ;&lt;BR /&gt;LOAD&lt;BR /&gt;A,&lt;BR /&gt;B,&lt;BR /&gt;APPLYMAP('C_Map', A, '') AS C ,&lt;BR /&gt;APPLYMAP('D_Map', A, '') AS D&lt;BR /&gt;INLINE [&lt;BR /&gt;A, B&lt;BR /&gt;1, aa&lt;BR /&gt;2, ss&lt;BR /&gt;3, ee&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;This is about thinking of your data in QlikView terms and not as a database!&lt;BR /&gt;Here are a couple of useful blogs on the applymap function.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.quickintelligence.co.uk/applymap-is-it-so-wrong/" target="_blank"&gt;https://www.quickintelligence.co.uk/applymap-is-it-so-wrong/&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Nov 2018 17:35:33 GMT</pubDate>
    <dc:creator>Colin-Albert</dc:creator>
    <dc:date>2018-11-28T17:35:33Z</dc:date>
    <item>
      <title>OuterJoin inline</title>
      <link>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1513744#M508909</link>
      <description>&lt;P&gt;Hi, i have this problem, i have 3 table inline populated in this way:&lt;/P&gt;&lt;P&gt;Tableuno:&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A,B&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, aa&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, ss&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3, ee&lt;BR /&gt;];&lt;BR /&gt;Tabledue:&lt;BR /&gt;outer join (Tableuno)&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A,C&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1, xx&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4, yy&lt;BR /&gt;];&lt;BR /&gt;Tabletre:&lt;BR /&gt;outer join (Tableuno)&lt;BR /&gt;LOAD * INLINE [&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A,C,D&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, cc,dd&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6, ee,ff&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When i show in a table i see for example 2 rows:&lt;/P&gt;&lt;P&gt;A,B,C,D&lt;/P&gt;&lt;P&gt;2,cc,-,-&lt;/P&gt;&lt;P&gt;2,-,cc,dd&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But i want have for result in the table only 1 row in this way:&lt;/P&gt;&lt;P&gt;A,B,C,D&lt;/P&gt;&lt;P&gt;2,ss,cc,dd&lt;/P&gt;&lt;P&gt;is possible?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 16:15:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1513744#M508909</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2018-11-28T16:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: OuterJoin inline</title>
      <link>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1513782#M508910</link>
      <description>&lt;P&gt;&lt;STRIKE&gt;You can do this with a INNER join&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRIKE&gt;&lt;STRONG&gt;inner&lt;/STRONG&gt; join (Tableuno)&lt;/STRIKE&gt;&lt;BR /&gt;&lt;STRIKE&gt;LOAD * INLINE [&lt;/STRIKE&gt;&lt;BR /&gt;&lt;STRIKE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; A,C,D&lt;/STRIKE&gt;&lt;BR /&gt;&lt;STRIKE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2, cc,dd&lt;/STRIKE&gt;&lt;BR /&gt;&lt;STRIKE&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 6, ee,ff&lt;/STRIKE&gt;&lt;BR /&gt;&lt;STRIKE&gt;];&lt;/STRIKE&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Ignore this is wrong!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/combine-tables-join-keep.htm" target="_blank"&gt;https://help.qlik.com/en-US/qlikview/November2017/Subsystems/Client/Content/Scripting/combine-tables-join-keep.htm&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 17:30:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1513782#M508910</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2018-11-28T17:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: OuterJoin inline</title>
      <link>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1513785#M508911</link>
      <description>sorry but no... i want take all position like i did with the OUTER JOIN, only i want the result is in the same row, like i wrote</description>
      <pubDate>Wed, 28 Nov 2018 17:05:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1513785#M508911</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2018-11-28T17:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: OuterJoin inline</title>
      <link>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1513808#M508912</link>
      <description>&lt;P&gt;I would use applymap() rather than joins.&amp;nbsp; The mapping tables in the example below have a data in a slightly dfferent sequence to your original loads, but give the answer you are looking for,&lt;/P&gt;&lt;P&gt;C_Map:&lt;BR /&gt;mapping LOAD * INLINE [&lt;BR /&gt;A,C&lt;BR /&gt;1, xx&lt;BR /&gt;4, yy&lt;BR /&gt;2, cc&lt;BR /&gt;6, ee&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;D_Map:&lt;BR /&gt;mapping LOAD * INLINE [&lt;BR /&gt;A,D&lt;BR /&gt;2, dd&lt;BR /&gt;6, ff&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Tableuno:&lt;BR /&gt;load *&lt;BR /&gt;where C &amp;gt; '' and D &amp;gt; '' ;&lt;BR /&gt;LOAD&lt;BR /&gt;A,&lt;BR /&gt;B,&lt;BR /&gt;APPLYMAP('C_Map', A, '') AS C ,&lt;BR /&gt;APPLYMAP('D_Map', A, '') AS D&lt;BR /&gt;INLINE [&lt;BR /&gt;A, B&lt;BR /&gt;1, aa&lt;BR /&gt;2, ss&lt;BR /&gt;3, ee&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;This is about thinking of your data in QlikView terms and not as a database!&lt;BR /&gt;Here are a couple of useful blogs on the applymap function.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592" target="_blank"&gt;https://community.qlik.com/t5/Qlik-Design-Blog/Don-t-join-use-Applymap-instead/ba-p/1467592&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.quickintelligence.co.uk/applymap-is-it-so-wrong/" target="_blank"&gt;https://www.quickintelligence.co.uk/applymap-is-it-so-wrong/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Nov 2018 17:35:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1513808#M508912</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2018-11-28T17:35:33Z</dc:date>
    </item>
    <item>
      <title>Re: OuterJoin inline</title>
      <link>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1514039#M508913</link>
      <description>Thanks, you it come the right row.... but.... the others rows.... was deleted, i can't see more in the table....</description>
      <pubDate>Thu, 29 Nov 2018 08:02:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/OuterJoin-inline/m-p/1514039#M508913</guid>
      <dc:creator>danosoft</dc:creator>
      <dc:date>2018-11-29T08:02:05Z</dc:date>
    </item>
  </channel>
</rss>

