<?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: Problem with left join in Francophones</title>
    <link>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900452#M6707</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thankyou for marking the answer as helpful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you mark any1 as the correct 1 so as to close this discussion &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Apr 2015 11:11:24 GMT</pubDate>
    <dc:creator>ankitaag</dc:creator>
    <dc:date>2015-04-24T11:11:24Z</dc:date>
    <item>
      <title>Problem with left join</title>
      <link>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900447#M6702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;I'm facing an issue while using left join in load script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have for example this following script :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD A as ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B as mont,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Feuil1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ID, Type, Value&lt;/P&gt;&lt;P&gt;1, X, 10&lt;/P&gt;&lt;P&gt;2, X, 20&lt;/P&gt;&lt;P&gt;4, Y, 30&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Left join (Data)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mont - &lt;SPAN style="color: #ff0000;"&gt;Value&lt;/SPAN&gt; as Mont_Value&lt;/P&gt;&lt;P&gt;resident Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is that I can not use the field Value from table Table1 while joining.&lt;/P&gt;&lt;P&gt;Is there a way to do this in qlikview ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 08:07:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900447#M6702</guid>
      <dc:creator />
      <dc:date>2015-04-24T08:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with left join</title>
      <link>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900448#M6703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Bonour,&lt;/P&gt;&lt;P&gt;pour faire l'addition tu dois mettre les deux collones dans un même tableau&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD A as ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B as mont,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Feuil1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ID, Type, Value&lt;/P&gt;&lt;P&gt;1, X, 10&lt;/P&gt;&lt;P&gt;2, X, 20&lt;/P&gt;&lt;P&gt;4, Y, 30&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;nonconcatenate&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mont,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Type,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Value&lt;/P&gt;&lt;P&gt;resident Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table3:&lt;/P&gt;&lt;P&gt;nonconcatenate&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;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mont - Value as Mont_Value,&lt;/P&gt;&lt;P&gt;resident Table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop tables Table1, Table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eh voilà!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cordialement,&lt;/P&gt;&lt;P&gt;Yves&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 09:15:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900448#M6703</guid>
      <dc:creator>yvesqlik</dc:creator>
      <dc:date>2015-04-24T09:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with left join</title>
      <link>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900449#M6704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;you can't do&amp;nbsp; :&amp;nbsp; &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;mont - &lt;/SPAN&gt;&lt;SPAN style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt;Value&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; as Mont_Value&lt;/SPAN&gt; because the filed "Value" doesn't belong to Table1 so the solution is :&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Data:&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD * INLINE [&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;ID, Type, Value&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;1, X, 10&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;2, X, 20&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;4, Y, 30&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left join (Data)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0433ff;"&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #941100;"&gt;ID&lt;/SPAN&gt;, &lt;SPAN style="color: #941100;"&gt;mont&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #0433ff;"&gt;resident&lt;/SPAN&gt; Table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Final:&lt;BR /&gt;&lt;SPAN style="color: #0433ff;"&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #941100;"&gt;ID&lt;/SPAN&gt;, &lt;SPAN style="color: #941100;"&gt;mont&lt;/SPAN&gt; -&lt;SPAN style="color: #941100;"&gt;Value as &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Mont_Value&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0433ff;"&gt;Resident&lt;/SPAN&gt; Data; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;drop tables Data, Table1 &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 09:17:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900449#M6704</guid>
      <dc:creator>mambi</dc:creator>
      <dc:date>2015-04-24T09:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with left join</title>
      <link>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900450#M6705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Patrick,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load A as ID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; B as mont,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; C&lt;/P&gt;&lt;P&gt; Inline [&lt;/P&gt;&lt;P&gt;A,B,C&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;LOAD * INLINE [&lt;/P&gt;&lt;P&gt;ID, Type, Value&lt;/P&gt;&lt;P&gt;1, X, 10&lt;/P&gt;&lt;P&gt;2, X, 20&lt;/P&gt;&lt;P&gt;4, Y, 30&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Load ID,mont-Value as Mont_Value&lt;/P&gt;&lt;P&gt;Resident Table1;&lt;/P&gt;&lt;P&gt;drop table Table1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 10:15:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900450#M6705</guid>
      <dc:creator>ankitaag</dc:creator>
      <dc:date>2015-04-24T10:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with left join</title>
      <link>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900451#M6706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Merci çà marche !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 11:03:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900451#M6706</guid>
      <dc:creator />
      <dc:date>2015-04-24T11:03:15Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with left join</title>
      <link>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900452#M6707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thankyou for marking the answer as helpful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you mark any1 as the correct 1 so as to close this discussion &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Apr 2015 11:11:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Francophones/Problem-with-left-join/m-p/900452#M6707</guid>
      <dc:creator>ankitaag</dc:creator>
      <dc:date>2015-04-24T11:11:24Z</dc:date>
    </item>
  </channel>
</rss>

