<?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: Problem with value in linked table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232399#M863303</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use an outer join while loading the two tables, store into an QVD, then load that QVD and deal with the possible null values for clarity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See more on the topic here: &lt;A href="http://community.qlik.com/docs/DOC-3786" title="http://community.qlik.com/docs/DOC-3786"&gt;Generating Missing Data In QlikView | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 30 Dec 2016 15:21:24 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2016-12-30T15:21:24Z</dc:date>
    <item>
      <title>Problem with value in linked table</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232392#M863296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I connect two tables. One with the facts, the other one with budget.&lt;/P&gt;&lt;P&gt;for both tables, i created a key with autonumber.&lt;/P&gt;&lt;P&gt;Now, in both tables, the key are matching. But there are rows, where the some values are missing.&lt;/P&gt;&lt;P&gt;I added a picture:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image" /&gt;&lt;IMG __jive_id="147593" alt="2016-12-24 02_52_55-QlikView x64 - [C__Users_rolf_Documents_QV Embru_Aussendienst test Join Warenber.png" class="jive-image image-1" src="/legacyfs/online/147593_2016-12-24 02_52_55-QlikView x64 - [C__Users_rolf_Documents_QV Embru_Aussendienst test Join Warenber.png" style="height: 239px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;the red area represents the budget table, the blue one the facts table. As we see, the key number 509 or 510 are correct in the blue area. But the key 508 has no values vc and wb. The Values VC=16 and WB=62 exists in the Fact-Table, but not shown by key 508.&lt;/P&gt;&lt;P&gt;I tried several keys, with and without Autonumber.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What i'm doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rolf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232392#M863296</guid>
      <dc:creator>embruqlikview</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with value in linked table</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232393#M863297</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So do you want the Fact table to have the same values as you have in the budget table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then use Mapping Load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;B_VC_MAPPING:&lt;/P&gt;&lt;P&gt;Mapping Load &lt;/P&gt;&lt;P&gt;KEY,&lt;/P&gt;&lt;P&gt;B_VC&lt;/P&gt;&lt;P&gt;FROM Budget;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;B_WB_MAPPING:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Mapping Load &lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;KEY,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;B_WB&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM Budget;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;During FACT load add an extra validation to check and replace for nulls in VC and WB&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FACT:&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;LOAD * ,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;if(isnull(VC) or len(VC)&amp;lt;1,Applymap('&lt;SPAN style="font-size: 13.3333px;"&gt;B_VC_MAPPING&lt;/SPAN&gt;',KEY),VC) as VC,&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;if(isnull(WB) or &lt;SPAN style="font-size: 13.3333px;"&gt;len(WB)&amp;lt;1&lt;/SPAN&gt;,Applymap('&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;B_WB_MAPPING&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;',KEY),VC) as WB,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;FROM YOURDATASOURCE;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;But then what is point in having the same info in two separate tables??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Dec 2016 07:47:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232393#M863297</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2016-12-24T07:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with value in linked table</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232394#M863298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your fast answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can’t map the values from the budget table to the fact table.&lt;/P&gt;&lt;P&gt;Because the Fact-Table contains the main data. The sum of them must be comparised to the budget table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; In the Budget Table i do not need the field b_vc and b_wb - they are only to control the selection and the creation of the right key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I added another picture of both tables. The Budget table is correct. But the key 508 points to the Fact-Record with the key 508 and here i loose the values WB and VC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="picture.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/147609_picture.png" style="height: 111px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;The key e.g. 509 is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this maybe a problem of the keys?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I build the keys on this way:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; &lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;AutoNumber&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; (&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;VC&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;&amp;amp;'-'&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;WB&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;&amp;amp;'-'&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;Jahr&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;) &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;Key_Budget&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;,&lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;VC&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;B_VC&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;WB&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;B_WB&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;Budget&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;, &lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;Jahr&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;B_Jahr&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;&lt;C&gt;&lt;/C&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;&lt;BR /&gt; (&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;); &lt;BR /&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;And in the Fact-Table:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;AutoNumber&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; (&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;Vertreterschlüssel_1&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;&amp;amp;'-'&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;Warenbereich&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;&amp;amp;'-'&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;Mid&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;Auftragsdatum&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;,1,4)) &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #0433ff;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New'; color: #941100;"&gt;Key_Budget&lt;/SPAN&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9px; font-family: 'Courier New';"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Dec 2016 01:09:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232394#M863298</guid>
      <dc:creator>embruqlikview</dc:creator>
      <dc:date>2016-12-25T01:09:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with value in linked table</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232395#M863299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think your table is a&amp;nbsp; Straight Table&lt;/P&gt;&lt;P&gt;With Dimension = &lt;SPAN style="color: #941100; font-family: 'Courier New'; font-size: 9px;"&gt;Key_Budget&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #941100; font-family: 'Courier New'; font-size: 9px;"&gt;Expression1 = WB&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #941100; font-size: 9px; font-family: 'Courier New';"&gt;Expression2 = VC&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #941100; font-size: 9px; font-family: 'Courier New';"&gt;Expression3 = Budget&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;Is this correct?&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;You have different values for VC and WB that is why they are showing as '-'&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;try&amp;nbsp; SUM(WB) and SUM(VC)&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;OR&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;move WB and VC to dimensions there must be multiple different values for this.&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333px;"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #941100; font-family: 'Courier New'; font-size: 9px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 25 Dec 2016 07:40:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232395#M863299</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2016-12-25T07:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with value in linked table</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232396#M863300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I added a sample qvw, it's simplier to show my question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you select in the list boxes above B_Jahr=2016 and B_VC=16 then you can see 4 budget-records with these amounts: 2000, 2000, 6000, 20000. The sum is 30'000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then clear the selections and select in the list boxes below Jahr=2016, Vertreterschlüssel_1=16, then we can see, that in the budget table only 3 records with the amount of 28'000 are available&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2016 01:51:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232396#M863300</guid>
      <dc:creator>embruqlikview</dc:creator>
      <dc:date>2016-12-26T01:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with value in linked table</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232397#M863301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;because in FACT Warenbereich 62 Doesn't exist for VC 16 , it Exist for VC = 22&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="1value.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/147643_1value.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WB = 62 exists for WC = 22&lt;/P&gt;&lt;P&gt;&lt;IMG alt="value.PNG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/147644_value.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Dec 2016 11:49:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232397#M863301</guid>
      <dc:creator>vinieme12</dc:creator>
      <dc:date>2016-12-26T11:49:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with value in linked table</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232398#M863302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see, &lt;/P&gt;&lt;P&gt;Thats exactly my problem. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to generate the missing records in Facts Einzelposten during the load of Budget. Maybe that would resolve my problem. I found some examples in the community, but these show only small tables. I have to fill the key fields (B_YEAR-&amp;gt;YEAR, B_VC -&amp;gt; VC, B_WB -&amp;gt; WB) and all other fields with initial values chosen by me.&lt;BR /&gt; &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Rolf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 15:05:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232398#M863302</guid>
      <dc:creator>embruqlikview</dc:creator>
      <dc:date>2016-12-30T15:05:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with value in linked table</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232399#M863303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use an outer join while loading the two tables, store into an QVD, then load that QVD and deal with the possible null values for clarity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See more on the topic here: &lt;A href="http://community.qlik.com/docs/DOC-3786" title="http://community.qlik.com/docs/DOC-3786"&gt;Generating Missing Data In QlikView | Qlik Community&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 Dec 2016 15:21:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-value-in-linked-table/m-p/1232399#M863303</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2016-12-30T15:21:24Z</dc:date>
    </item>
  </channel>
</rss>

