<?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: Refer a Column from other Column in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140444#M20905</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use self join concept over here. You have to join same table to the existing table only while joining you have to rename resource_id field as manager_id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try below logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Resource_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resource_name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Manager_id&lt;/P&gt;&lt;P&gt;From tableName;&lt;/P&gt;&lt;P&gt;Left Join&lt;/P&gt;&lt;P&gt;Load Resource_id as Manager_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resource_name as Manager_name&lt;/P&gt;&lt;P&gt;From tableName;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Oct 2018 09:54:17 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2018-10-08T09:54:17Z</dc:date>
    <item>
      <title>Refer a Column from other Column</title>
      <link>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140440#M20901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Resource_Name, ResourceID and ManagerID in my data model&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/215325_Capture.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I fetch the ManagerName from this data? I'm still learning&amp;nbsp; qlikview script syntaxes and any help would be appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;YASH&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2018 09:07:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140440#M20901</guid>
      <dc:creator>yashcena</dc:creator>
      <dc:date>2018-10-08T09:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Refer a Column from other Column</title>
      <link>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140441#M20902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From you file I can see that you don't have Manager Name. However if you have a file that has the Manager Name you can load that file to another table together with Manager ID and the tables will link automatically (they always do when two columns have the same name in two separate tables).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2018 09:18:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140441#M20902</guid>
      <dc:creator>niclaz79</dc:creator>
      <dc:date>2018-10-08T09:18:35Z</dc:date>
    </item>
    <item>
      <title>Re: Refer a Column from other Column</title>
      <link>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140442#M20903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont have ManagerName stored anywhere separately. I need to make use of this data only to fetch the Manager Name. Can Inner Join be used? I'm not sure how to write it up.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2018 09:24:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140442#M20903</guid>
      <dc:creator>yashcena</dc:creator>
      <dc:date>2018-10-08T09:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Refer a Column from other Column</title>
      <link>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140443#M20904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Yash&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess you want to get the manager name from resource name based on ManagerId and ResourceID match (correct me if I am wrong).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In that case you can load all resources data into a mapping table and applymap based on ManagerID column to get the required data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see the attached QVD for example. Please note that I haven't reloaded the model because I didnt had the EXCEL file. You can reload it on you side and see if it works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajiv.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2018 09:41:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140443#M20904</guid>
      <dc:creator>rajivmeher</dc:creator>
      <dc:date>2018-10-08T09:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Refer a Column from other Column</title>
      <link>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140444#M20905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use self join concept over here. You have to join same table to the existing table only while joining you have to rename resource_id field as manager_id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try below logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Resource_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resource_name,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Manager_id&lt;/P&gt;&lt;P&gt;From tableName;&lt;/P&gt;&lt;P&gt;Left Join&lt;/P&gt;&lt;P&gt;Load Resource_id as Manager_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resource_name as Manager_name&lt;/P&gt;&lt;P&gt;From tableName;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Oct 2018 09:54:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Refer-a-Column-from-other-Column/m-p/140444#M20905</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2018-10-08T09:54:17Z</dc:date>
    </item>
  </channel>
</rss>

