<?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: Concatenation not happening in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1560650#M597729</link>
    <description>&lt;P&gt;About this link,&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can refer his solutions&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;STRONG&gt;Jonathan&lt;/STRONG&gt; solution.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;ActiveQtr: 
LOAD * INLINE [
    CommonDate,RecCount
    02/01/2017,1
    08/01/2017,1
    11/01/2017,1
    02/01/2018,1
    05/01/2018,1
    08/01/2018,1
    11/01/2018,1
    02/01/2019,1
];

Left Join (ActiveQtr)
IntervalMatch (CommonDate)
LOAD NewCustomerDate, ServiceExpirationDate180 
RESIDENT LatteData 
WHERE ServiceExpirationDate180 &amp;gt;= MakeDate(2018,1,2);

Left Join (ActiveQtr)
LOAD *
RESIDENT LatteData; 

Drop Table LatteData;&lt;/PRE&gt;</description>
    <pubDate>Mon, 25 Mar 2019 10:22:30 GMT</pubDate>
    <dc:creator>Nagaraju_KCS</dc:creator>
    <dc:date>2019-03-25T10:22:30Z</dc:date>
    <item>
      <title>Concatenation not happening</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1532366#M597724</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my script , i cannot see all the Type values for Type column except the first one(&lt;SPAN&gt;ActiveCustomerService180)&lt;/SPAN&gt; what am i doing wrong&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Temp:&lt;BR /&gt;LOAD Date("QtrStartDate",'MM/DD/YYYY') as [QtrStart],&lt;BR /&gt;Date(QtrEndDate,'MM/DD/YYYY') as CommonDate,&lt;BR /&gt;PeriodDate&lt;BR /&gt;FROM Calendar.qvd(qvd);&lt;/P&gt;&lt;P&gt;Inner Join(Temp)&lt;BR /&gt;LOAD&lt;BR /&gt;'ActiveCustomerService180' AS Type,&lt;BR /&gt;ORGANIZATIONID,&lt;BR /&gt;DATE(NewCustomerDate,'MM/DD/YYYY') AS CusStartDate,&lt;BR /&gt;DATE(ServiceExpirationDate180,'MM/DD/YYYY') AS CusEndDate&lt;BR /&gt;RESIDENT LatteData&lt;BR /&gt;WHERE DATE(ServiceExpirationDate180,'MM/DD/YYYY') &amp;gt;= '02/04/2017';&lt;/P&gt;&lt;P&gt;CONCATENATE(Temp)&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;'ActiveCustomerLastPing180' AS Type,&lt;BR /&gt;ORGANIZATIONID,&lt;BR /&gt;DATE(NewCustomerDate,'MM/DD/YYYY') AS CusStartDate,&lt;BR /&gt;DATE(LastPingDate180,'MM/DD/YYYY') AS CusEndDate&lt;BR /&gt;RESIDENT LatteData&lt;BR /&gt;WHERE DATE(LastPingDate180,'MM/DD/YYYY') &amp;gt;= '02/04/2017';&lt;/P&gt;&lt;P&gt;CONCATENATE(Temp)&lt;/P&gt;&lt;P&gt;LOAD&lt;BR /&gt;'ActiveCustomer180' AS Type,&lt;BR /&gt;ORGANIZATIONID,&lt;BR /&gt;DATE(NewCustomerDate,'MM/DD/YYYY') AS CusStartDate,&lt;BR /&gt;DATE(CustomerChurnDate180,'MM/DD/YYYY') AS CusEndDate&lt;BR /&gt;RESIDENT LatteData&lt;BR /&gt;WHERE DATE(CustomerChurnDate180,'MM/DD/YYYY') &amp;gt;= '02/04/2017';&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;Customer:&lt;BR /&gt;Load * Resident Temp Where&lt;BR /&gt;CusStartDate &amp;lt;= CommonDate AND CusEndDate &amp;gt;= [QtrStart];&lt;/P&gt;&lt;P&gt;Drop Table Temp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jan 2019 23:12:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1532366#M597724</guid>
      <dc:creator>stevejones1</dc:creator>
      <dc:date>2019-01-18T23:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenation not happening</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1532374#M597725</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Can you check the output of below code?&lt;/P&gt;&lt;P&gt;on what basis you are performing Inner Join in both the tables?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Temp:&lt;BR /&gt;LOAD Date("QtrStartDate",'MM/DD/YYYY') as [QtrStart],&lt;BR /&gt;Date(QtrEndDate,'MM/DD/YYYY') as CommonDate,&lt;BR /&gt;PeriodDate&lt;BR /&gt;FROM Calendar.qvd(qvd);&lt;/P&gt;&lt;P&gt;Inner Join(Temp)&lt;BR /&gt;LOAD&lt;BR /&gt;'ActiveCustomerService180' AS Type,&lt;BR /&gt;ORGANIZATIONID,&lt;BR /&gt;DATE(NewCustomerDate,'MM/DD/YYYY') AS CusStartDate,&lt;BR /&gt;DATE(ServiceExpirationDate180,'MM/DD/YYYY') AS CusEndDate&lt;BR /&gt;RESIDENT LatteData&lt;BR /&gt;WHERE DATE(ServiceExpirationDate180,'MM/DD/YYYY') &amp;gt;= '02/04/2017';&lt;/P&gt;</description>
      <pubDate>Sat, 19 Jan 2019 05:37:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1532374#M597725</guid>
      <dc:creator>shiveshsingh</dc:creator>
      <dc:date>2019-01-19T05:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenation not happening</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1532487#M597726</link>
      <description>&lt;P&gt;Even i am not sure , i am following the help provided here&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/t5/New-to-Qlik-Community/Active-Members-Count/m-p/1531298#M8284" target="_blank"&gt;https://community.qlik.com/t5/New-to-Qlik-Community/Active-Members-Count/m-p/1531298#M8284&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jan 2019 02:23:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1532487#M597726</guid>
      <dc:creator>stevejones1</dc:creator>
      <dc:date>2019-01-21T02:23:19Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenation not happening</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1532981#M597727</link>
      <description>&lt;P&gt;Is it a cross join&lt;/P&gt;</description>
      <pubDate>Tue, 22 Jan 2019 05:07:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1532981#M597727</guid>
      <dc:creator>stevejones1</dc:creator>
      <dc:date>2019-01-22T05:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenation not happening</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1560635#M597728</link>
      <description>&lt;P&gt;Hi Steve,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Inner Join:&lt;/STRONG&gt; Join will combine the rows where the key values matches, (It should be one mapping field between 2 tables, otherwise it ll take cross join)&lt;/P&gt;&lt;P&gt;Example&lt;BR /&gt;Category&lt;BR /&gt;Load * inline [&lt;BR /&gt;ID, Category&lt;BR /&gt;100, A&lt;BR /&gt;101, B&lt;BR /&gt;102, C&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;Inner Join(Category)&lt;/P&gt;&lt;P&gt;Product&lt;BR /&gt;LOAD * inline [&lt;BR /&gt;ID, Product, Sales&lt;BR /&gt;100, A1, 130&lt;BR /&gt;100, A2, 125&lt;BR /&gt;101, B1, 210&lt;BR /&gt;];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Output&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;ID&lt;/TD&gt;&lt;TD&gt;Category&lt;/TD&gt;&lt;TD&gt;Product&lt;/TD&gt;&lt;TD&gt;Sales&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;A1&lt;/TD&gt;&lt;TD&gt;130&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;A2&lt;/TD&gt;&lt;TD&gt;125&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;101&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;B1&lt;/TD&gt;&lt;TD&gt;210&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it helps...&lt;/P&gt;</description>
      <pubDate>Mon, 25 Mar 2019 10:01:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1560635#M597728</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2019-03-25T10:01:46Z</dc:date>
    </item>
    <item>
      <title>Re: Concatenation not happening</title>
      <link>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1560650#M597729</link>
      <description>&lt;P&gt;About this link,&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can refer his solutions&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;STRONG&gt;Jonathan&lt;/STRONG&gt; solution.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;ActiveQtr: 
LOAD * INLINE [
    CommonDate,RecCount
    02/01/2017,1
    08/01/2017,1
    11/01/2017,1
    02/01/2018,1
    05/01/2018,1
    08/01/2018,1
    11/01/2018,1
    02/01/2019,1
];

Left Join (ActiveQtr)
IntervalMatch (CommonDate)
LOAD NewCustomerDate, ServiceExpirationDate180 
RESIDENT LatteData 
WHERE ServiceExpirationDate180 &amp;gt;= MakeDate(2018,1,2);

Left Join (ActiveQtr)
LOAD *
RESIDENT LatteData; 

Drop Table LatteData;&lt;/PRE&gt;</description>
      <pubDate>Mon, 25 Mar 2019 10:22:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Concatenation-not-happening/m-p/1560650#M597729</guid>
      <dc:creator>Nagaraju_KCS</dc:creator>
      <dc:date>2019-03-25T10:22:30Z</dc:date>
    </item>
  </channel>
</rss>

