<?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 joins issue (conditional?) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/joins-issue-conditional/m-p/1056276#M354055</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello to all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm facing some issues to join some tables together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 271px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="19" width="119"&gt;[Main Data]:&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;Customer Code&lt;/TD&gt;&lt;TD&gt;Customer Description&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;1234&lt;/TD&gt;&lt;TD&gt;xxxxxx&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12345&lt;/TD&gt;&lt;TD&gt;yyyyyy&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12346&lt;/TD&gt;&lt;TD&gt;zzzzz&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12347&lt;/TD&gt;&lt;TD&gt;wwww&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12348&lt;/TD&gt;&lt;TD&gt;ppppp&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 283px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="19" width="131"&gt;[BudgetData]:&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;Customer Code&lt;/TD&gt;&lt;TD&gt;Customer Description&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;zwert&lt;/TD&gt;&lt;TD&gt;qqqqqq&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12345&lt;/TD&gt;&lt;TD&gt;yyyyyy&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;ishdjoakd&lt;/TD&gt;&lt;TD&gt;lllllllllllll&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12347&lt;/TD&gt;&lt;TD&gt;wwaww&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;gsdygsau&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;papapap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to concatenate those, in order to have both information in my customer information, but considering the following condition:&lt;/P&gt;&lt;P&gt;- if I have the same customer code in both tables, I need the information for [Customer Description] to be loaded from [Main Data].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to do this:&lt;/P&gt;&lt;P&gt;- Concatenate both information for [Customer Code].&lt;/P&gt;&lt;P&gt;- Use left join for both datasets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sample Script:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Customer_CONCAT:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;DISTINCT&lt;/P&gt;&lt;P&gt;NUM(REPLACE(REPLACE([Customer Code],'CP',''),'CROD','')) as [CorpCustomerCode]&lt;/P&gt;&lt;P&gt;Resident [Main Data];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;Customer_CONCAT2:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;DISTINCT&lt;/P&gt;&lt;P&gt;[Customer Code] as [CorpCustomerCode]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(vFOLDER)&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Customer_CONCAT2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//exit script;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN [Customer_CONCAT]:&lt;/P&gt;&lt;P&gt;CustomerData_TEMP:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;DISTINCT&lt;/P&gt;&lt;P&gt;NUM(REPLACE(REPLACE([Customer Code],'CP',''),'CROD','')) as [CorpCustomerCode],&lt;/P&gt;&lt;P&gt;[Customer] as CustomerDescription,&lt;/P&gt;&lt;P&gt;NUM(REPLACE([Corp/Non Corp Customer Code],'CP','')) as CCode,&lt;/P&gt;&lt;P&gt;[Corp/Non Corp Customer] as CCDescription,&lt;/P&gt;&lt;P&gt;[Customer Type Description] as CTDescription&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident [Main Data];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN [Customer_CONCAT]:&lt;/P&gt;&lt;P&gt;CustomerDataBudget:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;// [Customer Group] as CustomerGroup, //MA: We do not really need this information.&lt;/P&gt;&lt;P&gt;[Customer Code] as [CorpCustomerCode],&lt;/P&gt;&lt;P&gt;[Customer Name] as CustomerDescription,&lt;/P&gt;&lt;P&gt;[Corp/Non Corp Code] as CCode,&lt;/P&gt;&lt;P&gt;[Corp/Non Corp Name] as CCDescription,&lt;/P&gt;&lt;P&gt;'External' as CTDescription&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(vFOLDER)&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//exit script;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP FIELDs [Corp/Non Corp Customer],[Corp/Non Corp Customer Code],[Customer Type Description],[Customer Code],[Customer];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RENAME Fields CorpCustomerCode TO [Customer Code],CCDescription TO [Corp/Non Corp Customer] ,CTDescription TO [Customer Type Description],CCode TO [Corp/Non Corp Customer Code], CustomerDescription TO [Customer];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CustomerData:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Resident Customer_CONCAT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Customer_CONCAT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exit script;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;End of sample script.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result of this script is that I 'lost' my [Customer Code] that only exist in my [BudgetData].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas on how to solve this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load both datasets for [Customer Code], then concatenate those datasets. After that, include a left join with [Main Data] then for the 'missing' information (the information that I have only in [BudgetData], I would make a left join). I tried to use the 'where' statement, but it didn't worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the support in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco Arruda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 May 2016 12:42:29 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-05-02T12:42:29Z</dc:date>
    <item>
      <title>joins issue (conditional?)</title>
      <link>https://community.qlik.com/t5/QlikView/joins-issue-conditional/m-p/1056276#M354055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello to all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm facing some issues to join some tables together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the following tables:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 271px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="19" width="119"&gt;[Main Data]:&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;Customer Code&lt;/TD&gt;&lt;TD&gt;Customer Description&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;1234&lt;/TD&gt;&lt;TD&gt;xxxxxx&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12345&lt;/TD&gt;&lt;TD&gt;yyyyyy&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12346&lt;/TD&gt;&lt;TD&gt;zzzzz&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12347&lt;/TD&gt;&lt;TD&gt;wwww&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12348&lt;/TD&gt;&lt;TD&gt;ppppp&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 283px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="19" width="131"&gt;[BudgetData]:&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;Customer Code&lt;/TD&gt;&lt;TD&gt;Customer Description&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;zwert&lt;/TD&gt;&lt;TD&gt;qqqqqq&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12345&lt;/TD&gt;&lt;TD&gt;yyyyyy&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;ishdjoakd&lt;/TD&gt;&lt;TD&gt;lllllllllllll&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl65" height="19"&gt;12347&lt;/TD&gt;&lt;TD&gt;wwaww&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="19"&gt;gsdygsau&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;papapap&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to concatenate those, in order to have both information in my customer information, but considering the following condition:&lt;/P&gt;&lt;P&gt;- if I have the same customer code in both tables, I need the information for [Customer Description] to be loaded from [Main Data].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to do this:&lt;/P&gt;&lt;P&gt;- Concatenate both information for [Customer Code].&lt;/P&gt;&lt;P&gt;- Use left join for both datasets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sample Script:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Customer_CONCAT:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;DISTINCT&lt;/P&gt;&lt;P&gt;NUM(REPLACE(REPLACE([Customer Code],'CP',''),'CROD','')) as [CorpCustomerCode]&lt;/P&gt;&lt;P&gt;Resident [Main Data];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;Customer_CONCAT2:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;DISTINCT&lt;/P&gt;&lt;P&gt;[Customer Code] as [CorpCustomerCode]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(vFOLDER)&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Customer_CONCAT2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//exit script;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN [Customer_CONCAT]:&lt;/P&gt;&lt;P&gt;CustomerData_TEMP:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;DISTINCT&lt;/P&gt;&lt;P&gt;NUM(REPLACE(REPLACE([Customer Code],'CP',''),'CROD','')) as [CorpCustomerCode],&lt;/P&gt;&lt;P&gt;[Customer] as CustomerDescription,&lt;/P&gt;&lt;P&gt;NUM(REPLACE([Corp/Non Corp Customer Code],'CP','')) as CCode,&lt;/P&gt;&lt;P&gt;[Corp/Non Corp Customer] as CCDescription,&lt;/P&gt;&lt;P&gt;[Customer Type Description] as CTDescription&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Resident [Main Data];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN [Customer_CONCAT]:&lt;/P&gt;&lt;P&gt;CustomerDataBudget:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;// [Customer Group] as CustomerGroup, //MA: We do not really need this information.&lt;/P&gt;&lt;P&gt;[Customer Code] as [CorpCustomerCode],&lt;/P&gt;&lt;P&gt;[Customer Name] as CustomerDescription,&lt;/P&gt;&lt;P&gt;[Corp/Non Corp Code] as CCode,&lt;/P&gt;&lt;P&gt;[Corp/Non Corp Name] as CCDescription,&lt;/P&gt;&lt;P&gt;'External' as CTDescription&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;$(vFOLDER)&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//exit script;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP FIELDs [Corp/Non Corp Customer],[Corp/Non Corp Customer Code],[Customer Type Description],[Customer Code],[Customer];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RENAME Fields CorpCustomerCode TO [Customer Code],CCDescription TO [Corp/Non Corp Customer] ,CTDescription TO [Customer Type Description],CCode TO [Corp/Non Corp Customer Code], CustomerDescription TO [Customer];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CustomerData:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;Resident Customer_CONCAT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE Customer_CONCAT;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exit script;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;End of sample script.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result of this script is that I 'lost' my [Customer Code] that only exist in my [BudgetData].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas on how to solve this issue?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought something like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load both datasets for [Customer Code], then concatenate those datasets. After that, include a left join with [Main Data] then for the 'missing' information (the information that I have only in [BudgetData], I would make a left join). I tried to use the 'where' statement, but it didn't worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the support in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need more information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco Arruda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2016 12:42:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/joins-issue-conditional/m-p/1056276#M354055</guid>
      <dc:creator />
      <dc:date>2016-05-02T12:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: joins issue (conditional?)</title>
      <link>https://community.qlik.com/t5/QlikView/joins-issue-conditional/m-p/1056277#M354056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marco, if it helps, you can check previously laoded customers using Exists() function:&lt;/P&gt;&lt;P&gt;[Main Data]: &lt;/P&gt;&lt;P&gt;LOAD [Customer Code],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Customer Description]&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;FROM...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//[BudgetData]:&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;LOAD [Customer Code],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Customer Description]&lt;/P&gt;&lt;P&gt;FROM... Where Not Exists([Customer Code])&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you have a table without duplicates from budget and you can join the remaining data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2016 13:05:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/joins-issue-conditional/m-p/1056277#M354056</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-05-02T13:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: joins issue (conditional?)</title>
      <link>https://community.qlik.com/t5/QlikView/joins-issue-conditional/m-p/1056278#M354057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, I'll try this way to see how it goes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2016 14:46:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/joins-issue-conditional/m-p/1056278#M354057</guid>
      <dc:creator />
      <dc:date>2016-05-02T14:46:08Z</dc:date>
    </item>
  </channel>
</rss>

