<?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 avoiding a circular reference loop in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/avoiding-a-circular-reference-loop/m-p/238898#M89657</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Qlikview creates a link/join by matching field names in each table, if you want to avoid circurlar reference and link two tables then create a common field that is only common to those two tables.&lt;/P&gt;&lt;P&gt;e.g. if you have thre tables A, B, C, each table contains a field called customer. If you only want to join only tables A &amp;amp; B then create a field while loading the script of tables A &amp;amp; B&lt;/P&gt;&lt;P&gt;customer as customer_AB,&lt;/P&gt;&lt;P&gt;In your example you have a number of fields with the exact same, rename the fields unique (the ones you don't want to join on) to that table as you load the table otherwise a circular reference occurs. If you do want to link all of these common fields then you can create a master table like this:&lt;/P&gt;&lt;P&gt;LOAD * FROM TABLE_A;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;LOAD * FROM TABLE_B;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;LOAD * FROM TABLE_C;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Jul 2010 18:15:12 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-07-30T18:15:12Z</dc:date>
    <item>
      <title>avoiding a circular reference loop</title>
      <link>https://community.qlik.com/t5/QlikView/avoiding-a-circular-reference-loop/m-p/238895#M89654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Im having a problem with a circular loop reference when i try and link 'Care Group' field in 3 tables.&lt;/P&gt;&lt;P&gt;I therefore have to rename '&lt;B&gt;Care Group&lt;/B&gt;' to '&lt;B&gt;Specialty Care Group&lt;/B&gt;' in the &lt;B&gt;Specialty_Mapping&lt;/B&gt; table to prevent this loop. The thing is without these both linking i cant display any relationships between the 3 tables in charts.&lt;/P&gt;&lt;P&gt;The image below illustrates the 3 fact tables (circles black) and the 2 fields hightlighted green are the fields i want to link by common '&lt;B&gt;Care Group&lt;/B&gt; name' but if i do the loop appears.&lt;/P&gt;&lt;P&gt;Does anyone have any thoughts on how i can prevent such a loop?&lt;IMG alt="error loading image" class="jive-image error-loading-image" src="https://community.qlik.com/legacyfs/online/-2050_sourceID:2050" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jul 2010 16:35:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/avoiding-a-circular-reference-loop/m-p/238895#M89654</guid>
      <dc:creator />
      <dc:date>2010-07-30T16:35:14Z</dc:date>
    </item>
    <item>
      <title>avoiding a circular reference loop</title>
      <link>https://community.qlik.com/t5/QlikView/avoiding-a-circular-reference-loop/m-p/238896#M89655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create a unique field incorporating all the linked fields&lt;/P&gt;&lt;P&gt;e.g. field_a &amp;amp; field_b &amp;amp; field_c as uni_field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jul 2010 16:42:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/avoiding-a-circular-reference-loop/m-p/238896#M89655</guid>
      <dc:creator />
      <dc:date>2010-07-30T16:42:08Z</dc:date>
    </item>
    <item>
      <title>avoiding a circular reference loop</title>
      <link>https://community.qlik.com/t5/QlikView/avoiding-a-circular-reference-loop/m-p/238897#M89656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;Hi what unique key do you propose based on diagram attached?&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jul 2010 16:58:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/avoiding-a-circular-reference-loop/m-p/238897#M89656</guid>
      <dc:creator />
      <dc:date>2010-07-30T16:58:02Z</dc:date>
    </item>
    <item>
      <title>avoiding a circular reference loop</title>
      <link>https://community.qlik.com/t5/QlikView/avoiding-a-circular-reference-loop/m-p/238898#M89657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Qlikview creates a link/join by matching field names in each table, if you want to avoid circurlar reference and link two tables then create a common field that is only common to those two tables.&lt;/P&gt;&lt;P&gt;e.g. if you have thre tables A, B, C, each table contains a field called customer. If you only want to join only tables A &amp;amp; B then create a field while loading the script of tables A &amp;amp; B&lt;/P&gt;&lt;P&gt;customer as customer_AB,&lt;/P&gt;&lt;P&gt;In your example you have a number of fields with the exact same, rename the fields unique (the ones you don't want to join on) to that table as you load the table otherwise a circular reference occurs. If you do want to link all of these common fields then you can create a master table like this:&lt;/P&gt;&lt;P&gt;LOAD * FROM TABLE_A;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;LOAD * FROM TABLE_B;&lt;/P&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;LOAD * FROM TABLE_C;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Jul 2010 18:15:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/avoiding-a-circular-reference-loop/m-p/238898#M89657</guid>
      <dc:creator />
      <dc:date>2010-07-30T18:15:12Z</dc:date>
    </item>
  </channel>
</rss>

