<?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 How to differentiate one Key Associated column from two different tables in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/How-to-differentiate-one-Key-Associated-column-from-two/m-p/1939593#M77453</link>
    <description>&lt;P&gt;Hello, everyone! I am pretty new in Qlik Sense and I trying to solve one problem regarding associations. I have two different tables, with a Key connection (association) in column "Xnumber" between the two. However, this column in Table1 has a bigger amount of data compared to Table2. I want to create objects/graphs with measures in which I can deal with just the values from one of these tables. Since all the data from Table 1 is included in Table 2 (but not the opposite), I want to create objects that return only the data from "Table2.Xnumber", and not the values presented in Table1.Xnumber. In summary, I want to create measures where I can differentiate the data from the key association of both tables (since the values are not 100% the same) while maintaining the association.&lt;/P&gt;
&lt;P&gt;Is that possible? What can I do? I thought about using this format "Table.Key", but I am looking for an alternative only coding via Data Load Editor.&lt;/P&gt;</description>
    <pubDate>Fri, 03 Jun 2022 19:11:27 GMT</pubDate>
    <dc:creator>Polor1993</dc:creator>
    <dc:date>2022-06-03T19:11:27Z</dc:date>
    <item>
      <title>How to differentiate one Key Associated column from two different tables</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-differentiate-one-Key-Associated-column-from-two/m-p/1939593#M77453</link>
      <description>&lt;P&gt;Hello, everyone! I am pretty new in Qlik Sense and I trying to solve one problem regarding associations. I have two different tables, with a Key connection (association) in column "Xnumber" between the two. However, this column in Table1 has a bigger amount of data compared to Table2. I want to create objects/graphs with measures in which I can deal with just the values from one of these tables. Since all the data from Table 1 is included in Table 2 (but not the opposite), I want to create objects that return only the data from "Table2.Xnumber", and not the values presented in Table1.Xnumber. In summary, I want to create measures where I can differentiate the data from the key association of both tables (since the values are not 100% the same) while maintaining the association.&lt;/P&gt;
&lt;P&gt;Is that possible? What can I do? I thought about using this format "Table.Key", but I am looking for an alternative only coding via Data Load Editor.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jun 2022 19:11:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-differentiate-one-Key-Associated-column-from-two/m-p/1939593#M77453</guid>
      <dc:creator>Polor1993</dc:creator>
      <dc:date>2022-06-03T19:11:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to differentiate one Key Associated column from two different tables</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-differentiate-one-Key-Associated-column-from-two/m-p/1939670#M77460</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Some objects will cope with this anyway (if you take off 'Include zero values'). But you can add a flag to the table with less data in, so something like this;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Table1:
Load * Inline [
XNumber, A
1, 10
2, 15
3, 20
];

Table2:
Load
	*,
    1 AS HasTable2XNumber;
Load * Inline [
XNumber, B
1, 5
3, 25
];&lt;/LI-CODE&gt;
&lt;P&gt;Then use set analysis, similar to bottom right here;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="20220604_1.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/81024i9530B181B494B63A/image-size/large?v=v2&amp;amp;px=999" role="button" title="20220604_1.png" alt="20220604_1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Chris.&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jun 2022 13:12:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-differentiate-one-Key-Associated-column-from-two/m-p/1939670#M77460</guid>
      <dc:creator>chrismarlow</dc:creator>
      <dc:date>2022-06-04T13:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to differentiate one Key Associated column from two different tables</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-differentiate-one-Key-Associated-column-from-two/m-p/1939694#M77463</link>
      <description>&lt;P&gt;Simply load the&amp;nbsp; column two times in each table&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example&lt;/P&gt;
&lt;P&gt;Table1:&lt;/P&gt;
&lt;P&gt;Load Keyfield //this field links to table2&lt;/P&gt;
&lt;P&gt;Keyfield as Keyfield1 // this one does not link to table1&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherfields&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From sourcetable1;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Table2:&lt;/P&gt;
&lt;P&gt;Load Keyfield //this field links to table1&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Keyfield as Keyfield2 // this one does not link to table1&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Otherfields&amp;nbsp;&lt;/P&gt;
&lt;P&gt;From sourcetable2;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then use keyfield1and Keyfield2 in charts&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2022 05:27:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-differentiate-one-Key-Associated-column-from-two/m-p/1939694#M77463</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2022-06-05T05:27:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to differentiate one Key Associated column from two different tables</title>
      <link>https://community.qlik.com/t5/App-Development/How-to-differentiate-one-Key-Associated-column-from-two/m-p/1950929#M78364</link>
      <description>&lt;P&gt;Thank you for the help! But how can I use set analysis and see all the values without using aggregation functions like 'Sum' that you used? I want to create an object where I will be able to see only the values from "HasTable2XNumber', but with the exactly data from the table, with no aggregation function.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2022 20:24:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/How-to-differentiate-one-Key-Associated-column-from-two/m-p/1950929#M78364</guid>
      <dc:creator>Polor1993</dc:creator>
      <dc:date>2022-07-01T20:24:50Z</dc:date>
    </item>
  </channel>
</rss>

