<?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 Association not working in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1983988#M81176</link>
    <description>&lt;P&gt;Hello guys i have the following scenario :&lt;/P&gt;
&lt;P&gt;Employee Table : //Table 1&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;Emp_num as connection key,&lt;/P&gt;
&lt;P&gt;Emp_num,&lt;/P&gt;
&lt;P&gt;Employee_Name&lt;/P&gt;
&lt;P&gt;from .....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Employee performance : //Table 2&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;Emp_num as Connection_key&lt;/P&gt;
&lt;P&gt;Emp_num as Performance_employee_key&lt;/P&gt;
&lt;P&gt;Emp_Name as Employee_performance_employee_name&lt;/P&gt;
&lt;P&gt;Score&lt;/P&gt;
&lt;P&gt;from ......&lt;/P&gt;
&lt;P&gt;here when i want to put in a table the following fields :&lt;/P&gt;
&lt;P&gt;1- Emp_num // from table 1&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;2- Employee_performance_employee_name // from table 2&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it shows eiether the emp num as null on the name as null , why is that ? they are associated via the "connection key"&lt;/P&gt;
&lt;P&gt;my understanding for this that if they are associated tables i can mix and match between the tables two fields.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what is happening here ? why i can't use emp number from one table and name from other table, they are associated&lt;/P&gt;</description>
    <pubDate>Thu, 22 Sep 2022 05:27:48 GMT</pubDate>
    <dc:creator>Saif1</dc:creator>
    <dc:date>2022-09-22T05:27:48Z</dc:date>
    <item>
      <title>Association not working</title>
      <link>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1983988#M81176</link>
      <description>&lt;P&gt;Hello guys i have the following scenario :&lt;/P&gt;
&lt;P&gt;Employee Table : //Table 1&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;Emp_num as connection key,&lt;/P&gt;
&lt;P&gt;Emp_num,&lt;/P&gt;
&lt;P&gt;Employee_Name&lt;/P&gt;
&lt;P&gt;from .....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Employee performance : //Table 2&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;Emp_num as Connection_key&lt;/P&gt;
&lt;P&gt;Emp_num as Performance_employee_key&lt;/P&gt;
&lt;P&gt;Emp_Name as Employee_performance_employee_name&lt;/P&gt;
&lt;P&gt;Score&lt;/P&gt;
&lt;P&gt;from ......&lt;/P&gt;
&lt;P&gt;here when i want to put in a table the following fields :&lt;/P&gt;
&lt;P&gt;1- Emp_num // from table 1&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;2- Employee_performance_employee_name // from table 2&amp;nbsp;&lt;/P&gt;
&lt;P&gt;it shows eiether the emp num as null on the name as null , why is that ? they are associated via the "connection key"&lt;/P&gt;
&lt;P&gt;my understanding for this that if they are associated tables i can mix and match between the tables two fields.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;what is happening here ? why i can't use emp number from one table and name from other table, they are associated&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 05:27:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1983988#M81176</guid>
      <dc:creator>Saif1</dc:creator>
      <dc:date>2022-09-22T05:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Association not working</title>
      <link>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1983990#M81177</link>
      <description>&lt;P&gt;Hi, you need to make sure that the fields you're using as keys are named exactly the same. Try like this:&lt;/P&gt;
&lt;LI-CODE lang="java"&gt;Employee Table : //Table 1
load
Emp_num as connection.#key,
Emp_num,
Employee_Name
from .....

Employee performance : //Table 2
load
Emp_num as connection.#key,
Emp_num as Performance_employee_key
Emp_Name as Employee_performance_employee_name
Score
from ......&lt;/LI-CODE&gt;
&lt;P&gt;notice how "connection.#key" is named identically in both of the tables - that should be your issue.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 05:35:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1983990#M81177</guid>
      <dc:creator>RsQK</dc:creator>
      <dc:date>2022-09-22T05:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: Association not working</title>
      <link>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1983996#M81178</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Generally, in Qlik, Associate between the tables are based on "Common" field Name. In your case, 2 tables doesn't have same column name, that's reason, it wouldn't able to associate.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;if you see in the table viewer, you can understand, both tables are not associated (no link between tables).&lt;/P&gt;
&lt;P&gt;As mentioned by RsQK, you can rename the fields and try it. It will fix auto.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 06:07:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1983996#M81178</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2022-09-22T06:07:47Z</dc:date>
    </item>
    <item>
      <title>Re: Association not working</title>
      <link>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1984027#M81180</link>
      <description>&lt;P&gt;Thanks guys for the reply , i made a typo when i was writing the post , they are the same and i have assossiaction in the data model (a link),&lt;BR /&gt;My problem is that i have an EMP master table (that has all the employee details num,name, etc)&lt;/P&gt;
&lt;P&gt;and i have employee performance table (has emp key , performance numbers)&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and when i associate them with the emp key ( i cant name them the same becuase there are multiple table with the same name) so i commoned name them "Connection_Key" , when adding something from the master employee table ( name ,number ,etc ) it gives null in the employee performance fields ( when adding to table) (when using fliters) ets , they are associated but not associated you understamed me ?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 06:47:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1984027#M81180</guid>
      <dc:creator>Saif1</dc:creator>
      <dc:date>2022-09-22T06:47:33Z</dc:date>
    </item>
    <item>
      <title>Re: Association not working</title>
      <link>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1984033#M81182</link>
      <description>&lt;P&gt;any solution ?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 07:11:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1984033#M81182</guid>
      <dc:creator>Saif1</dc:creator>
      <dc:date>2022-09-22T07:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Association not working</title>
      <link>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1984041#M81183</link>
      <description>&lt;P&gt;Might be, if any one of the table format is different?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Like one table the Empnum is string however another table is num?&lt;/P&gt;
&lt;P&gt;or, both has same set of values?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 07:21:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1984041#M81183</guid>
      <dc:creator>MayilVahanan</dc:creator>
      <dc:date>2022-09-22T07:21:30Z</dc:date>
    </item>
    <item>
      <title>Re: Association not working</title>
      <link>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1984047#M81185</link>
      <description>&lt;P&gt;how can i check the data type?&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 07:25:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1984047#M81185</guid>
      <dc:creator>Saif1</dc:creator>
      <dc:date>2022-09-22T07:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Association not working</title>
      <link>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1984092#M81191</link>
      <description>&lt;P&gt;it worked , i casted all of the emp nums into number and it worked , thanks so much&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Sep 2022 08:28:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Association-not-working/m-p/1984092#M81191</guid>
      <dc:creator>Saif1</dc:creator>
      <dc:date>2022-09-22T08:28:32Z</dc:date>
    </item>
  </channel>
</rss>

