<?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: Linking fields in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440820#M563164</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you have sample data or able to provide your table designs?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If both tables share the same unique ID column name, the join method will automatically link the fields and the fields in both tables will be available.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Feb 2013 14:49:35 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2013-02-19T14:49:35Z</dc:date>
    <item>
      <title>Linking fields</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440816#M563160</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 two tables that i need to link as part of my pie chart. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was able to link these fields in a straight table using IF formula and now I am having hard time linking straight table values to pie chart for TAGS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=if(left([issueID],3)='ABC',('Testing'),[tags])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table 1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Issue ID| Description| Tags|&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table 2&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Issue ID| Description &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 15:53:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440816#M563160</guid>
      <dc:creator />
      <dc:date>2013-02-15T15:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Linking fields</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440817#M563161</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 would just JOIN the two table together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;JOIN has variation with it,&lt;STRONG&gt; LEFT JOIN, RIGHT JOIN, INNER JOIN&lt;/STRONG&gt;. Please note, using just JOIN with result in &lt;STRONG&gt;OUTER JOIN&lt;/STRONG&gt;. So use approriate JOIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gabriel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 20:16:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440817#M563161</guid>
      <dc:creator>Gabriel</dc:creator>
      <dc:date>2013-02-15T20:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: Linking fields</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440818#M563162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you trying to get all records from Table 2 and only the tags from Table 1?&amp;nbsp; You will want to create the "link" or the join in your load script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample below will return all results for the Issue IDs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code _jivemacro_uid_13609621193492947" jivemacro_uid="_13609621193492947"&gt;&lt;P&gt;'Table 1':&lt;/P&gt;&lt;P&gt;Load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Issue ID, Description,&amp;nbsp;&amp;nbsp; Tags&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,&amp;nbsp;&amp;nbsp; Desc1,&amp;nbsp; Tags1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,&amp;nbsp;&amp;nbsp; Desc2,&amp;nbsp; Tags2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3,&amp;nbsp;&amp;nbsp; Desc3,&amp;nbsp; Tags3&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Table 2':&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OUTER JOIN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Issue ID, Description&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1,&amp;nbsp;&amp;nbsp; Desc_Table2_1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 2,&amp;nbsp;&amp;nbsp; Desc_Table2_2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE bgcolor="#ffffff" border="1" cellpadding="2" cellspacing="0" style="font-size: 9pt;"&gt;&lt;TBODY&gt;&lt;TR bgcolor="#f5f5f5"&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Issue ID&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Tags&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;TH nowrap="nowrap"&gt;&lt;SPAN style="color: #363636;"&gt;&lt;STRONG&gt;Description&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;STRONG&gt; &lt;/STRONG&gt;&lt;/TH&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1&lt;/SPAN&gt; &lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Tags1&lt;/SPAN&gt; &lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Desc1&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;1&lt;/SPAN&gt; &lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;BR /&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Desc_Table2_1&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;2&lt;/SPAN&gt; &lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Tags2&lt;/SPAN&gt; &lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Desc2&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;2&lt;/SPAN&gt; &lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;BR /&gt;&lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Desc_Table2_2&lt;/SPAN&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR bgcolor="#ffffff"&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;3&lt;/SPAN&gt; &lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Tags3&lt;/SPAN&gt; &lt;/TD&gt;&lt;TD bgcolor="#ffffff"&gt;&lt;SPAN style="color: #363636;"&gt;Desc3&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 15 Feb 2013 20:56:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440818#M563162</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-15T20:56:31Z</dc:date>
    </item>
    <item>
      <title>Re: Linking fields</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440819#M563163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nick, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to create a link between 2 tables and combine all of the records, not only tags. What would be the best way to do this in a formula?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 13:40:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440819#M563163</guid>
      <dc:creator />
      <dc:date>2013-02-19T13:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Linking fields</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440820#M563164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you have sample data or able to provide your table designs?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If both tables share the same unique ID column name, the join method will automatically link the fields and the fields in both tables will be available.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 14:49:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440820#M563164</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-02-19T14:49:35Z</dc:date>
    </item>
    <item>
      <title>Re: Linking fields</title>
      <link>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440821#M563165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both tables do not share the same unique ids'. The only thing that is shared is the table name. Does that help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Feb 2013 15:56:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Linking-fields/m-p/440821#M563165</guid>
      <dc:creator />
      <dc:date>2013-02-19T15:56:37Z</dc:date>
    </item>
  </channel>
</rss>

