<?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 link 2 filed in a document in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/link-2-filed-in-a-document/m-p/341207#M126060</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi due to circular problem , i hab&amp;nbsp; set 2 filed for customer number one for invoices( CUSTINVNO) and one for orders( CUSTORDNO)&amp;nbsp; , in same sheet i need to have 2 objects , one to evalute orders and other to evalute invoices , when i select to the filed&amp;nbsp; CUSTINVNO with certain value i want that the filed CUSTORDNO wil perform the same selection , ( like if they were same filed )&amp;nbsp; is it possible ? , many thanks for your help gidon &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 07 Apr 2012 06:44:33 GMT</pubDate>
    <dc:creator>gidon500</dc:creator>
    <dc:date>2012-04-07T06:44:33Z</dc:date>
    <item>
      <title>link 2 filed in a document</title>
      <link>https://community.qlik.com/t5/QlikView/link-2-filed-in-a-document/m-p/341207#M126060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi due to circular problem , i hab&amp;nbsp; set 2 filed for customer number one for invoices( CUSTINVNO) and one for orders( CUSTORDNO)&amp;nbsp; , in same sheet i need to have 2 objects , one to evalute orders and other to evalute invoices , when i select to the filed&amp;nbsp; CUSTINVNO with certain value i want that the filed CUSTORDNO wil perform the same selection , ( like if they were same filed )&amp;nbsp; is it possible ? , many thanks for your help gidon &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Apr 2012 06:44:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/link-2-filed-in-a-document/m-p/341207#M126060</guid>
      <dc:creator>gidon500</dc:creator>
      <dc:date>2012-04-07T06:44:33Z</dc:date>
    </item>
    <item>
      <title>link 2 filed in a document</title>
      <link>https://community.qlik.com/t5/QlikView/link-2-filed-in-a-document/m-p/341208#M126061</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Circular references usually occur when you have more than one fact table that both link to the same dimension and also have a common field themselves.&amp;nbsp; The best way to avoid this is to join the fact tables together using Concatenate().&amp;nbsp; In your case, try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customers:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CUSTNO,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc&lt;/P&gt;&lt;P&gt;FROM Customers...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fact:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Order'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FactType,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CUSTNO,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OrderDate&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc&lt;/P&gt;&lt;P&gt;FROM Orders...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (Fact)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'Invoice'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FactType,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CUSTNO,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field3,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; InvoiceDate&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; AS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; etc&lt;/P&gt;&lt;P&gt;FROM Invoices...;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now you only have one fact table but can separate the types with FactType.&amp;nbsp; CUSTNO is now the same field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Apr 2012 06:50:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/link-2-filed-in-a-document/m-p/341208#M126061</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-04-07T06:50:11Z</dc:date>
    </item>
    <item>
      <title>link 2 filed in a document</title>
      <link>https://community.qlik.com/t5/QlikView/link-2-filed-in-a-document/m-p/341209#M126062</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; Hi Jason , i will try it , so what you say is that i will have one table , that will include both Invoices data and orders data , will this increase the size on my model , as each line the the new table will have lots of empty cells thanks for your fast and professional gidon &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Apr 2012 07:19:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/link-2-filed-in-a-document/m-p/341209#M126062</guid>
      <dc:creator>gidon500</dc:creator>
      <dc:date>2012-04-07T07:19:52Z</dc:date>
    </item>
    <item>
      <title>link 2 filed in a document</title>
      <link>https://community.qlik.com/t5/QlikView/link-2-filed-in-a-document/m-p/341210#M126063</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's right. It will actually most likely reduce the size of the data model. QlilView stores DISTINCT values of each field just once, no matter what tables they are in. This way you only have one field CUSTNO, not 2. Empty fields won't matter. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 07 Apr 2012 07:33:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/link-2-filed-in-a-document/m-p/341210#M126063</guid>
      <dc:creator>Jason_Michaelides</dc:creator>
      <dc:date>2012-04-07T07:33:03Z</dc:date>
    </item>
  </channel>
</rss>

