<?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: Outer Join resulting in additional rows in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Outer-Join-resulting-in-additional-rows/m-p/2040487#M85732</link>
    <description>&lt;P&gt;I am guessing the AutonumberHash is not returning the same values, since you are using different fields. Try removing the lines with KeyTest.&lt;/P&gt;
&lt;P&gt;Are you intending to join on all of the fields PC_base_name, Date, and Country? If it is still not working as you expected, try concatenating the tables instead of joining them )&lt;/P&gt;
&lt;P&gt;Please like and mark my answer as a solution, if it resolved your issue.&lt;/P&gt;</description>
    <pubDate>Tue, 21 Feb 2023 16:06:30 GMT</pubDate>
    <dc:creator>E_Røse</dc:creator>
    <dc:date>2023-02-21T16:06:30Z</dc:date>
    <item>
      <title>Outer Join resulting in additional rows</title>
      <link>https://community.qlik.com/t5/App-Development/Outer-Join-resulting-in-additional-rows/m-p/2040473#M85731</link>
      <description>&lt;P&gt;Hello Team,&lt;/P&gt;
&lt;P&gt;I am going wrong in Outer join, which is resulting in multiple rows instead of single row as output. Please find the below code used and the resulting output.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hitha1512_0-1676994398266.png" style="width: 820px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/101021i5B07ACB2E9C8861D/image-dimensions/820x82?v=v2" width="820" height="82" role="button" title="hitha1512_0-1676994398266.png" alt="hitha1512_0-1676994398266.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PC_name and BaseItemNew fields added to pivot, is giving me the duplicate rows, as i am assuming its coming from 2 different tables&lt;/P&gt;
&lt;P&gt;Code used:&lt;/P&gt;
&lt;P&gt;Final_temp:&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;/P&gt;
&lt;P&gt;Load&amp;nbsp;&lt;BR /&gt;PC_Name as PC_Base_Name,&lt;BR /&gt;Hrd_MonthYear as Date,&lt;BR /&gt;Country,&lt;BR /&gt;PC_Name&lt;/P&gt;
&lt;P&gt;Resident Hardware_Final;&lt;/P&gt;
&lt;P&gt;Outer Join (Final_temp)&lt;/P&gt;
&lt;P&gt;Load&amp;nbsp;&lt;BR /&gt;BaseItem as PC_Base_Name,&lt;BR /&gt;MonthName(DateNew) as Date,&lt;BR /&gt;INCCountry as Country,&lt;BR /&gt;Max_Total_Min_PerDay,&lt;BR /&gt;Number,&lt;BR /&gt;BaseItemNew&lt;/P&gt;
&lt;P&gt;Resident Final_INC ;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;any help would be appreciated.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2023 16:27:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Outer-Join-resulting-in-additional-rows/m-p/2040473#M85731</guid>
      <dc:creator>hitha1512</dc:creator>
      <dc:date>2023-02-21T16:27:07Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join resulting in additional rows</title>
      <link>https://community.qlik.com/t5/App-Development/Outer-Join-resulting-in-additional-rows/m-p/2040487#M85732</link>
      <description>&lt;P&gt;I am guessing the AutonumberHash is not returning the same values, since you are using different fields. Try removing the lines with KeyTest.&lt;/P&gt;
&lt;P&gt;Are you intending to join on all of the fields PC_base_name, Date, and Country? If it is still not working as you expected, try concatenating the tables instead of joining them )&lt;/P&gt;
&lt;P&gt;Please like and mark my answer as a solution, if it resolved your issue.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2023 16:06:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Outer-Join-resulting-in-additional-rows/m-p/2040487#M85732</guid>
      <dc:creator>E_Røse</dc:creator>
      <dc:date>2023-02-21T16:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Outer Join resulting in additional rows</title>
      <link>https://community.qlik.com/t5/App-Development/Outer-Join-resulting-in-additional-rows/m-p/2040730#M85738</link>
      <description>&lt;P&gt;The Rows are getting duplicated you would actually have more than one row for the same PC_BASE_NAME&lt;/P&gt;
&lt;P&gt;check each table separately without joining.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;QUALIFY *;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Final_temp&lt;/STRONG&gt;:&lt;/P&gt;
&lt;P&gt;Load&amp;nbsp;&lt;BR /&gt;PC_Name as PC_Base_Name,&lt;BR /&gt;Hrd_MonthYear as Date,&lt;BR /&gt;Country,&lt;BR /&gt;PC_Name&lt;/P&gt;
&lt;P&gt;Resident Hardware_Final;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Final_INC_TEMP&lt;/STRONG&gt;:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Load&amp;nbsp;&lt;BR /&gt;BaseItem as PC_Base_Name,&lt;BR /&gt;MonthName(DateNew) as Date,&lt;BR /&gt;INCCountry as Country,&lt;BR /&gt;Max_Total_Min_PerDay,&lt;BR /&gt;Number,&lt;BR /&gt;BaseItemNew&lt;/P&gt;
&lt;P&gt;Resident Final_INC ;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2023 07:07:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Outer-Join-resulting-in-additional-rows/m-p/2040730#M85738</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2023-02-22T07:07:02Z</dc:date>
    </item>
  </channel>
</rss>

