<?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: Join two columns in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Join-two-columns/m-p/1353435#M834459</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be use DISTINCT keyword&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 May 2017 11:37:58 GMT</pubDate>
    <dc:creator>Anil_Babu_Samineni</dc:creator>
    <dc:date>2017-05-29T11:37:58Z</dc:date>
    <item>
      <title>Join two columns</title>
      <link>https://community.qlik.com/t5/QlikView/Join-two-columns/m-p/1353431#M834455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;I need to join different columns from two tables into a single column. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have two tables temp1 and temp2. In temp1 "Date" and "sheet_date" in temp2, these two fields are of date values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want these two fields to be combined as single field or column. So I have used the below code, but the output was not as I expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;temp1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD EmployeeID, &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Date,'MM/DD/YYYY') as Date&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\RM_Extracted_QVD\EXT_presentEmpInfo000.qvd]&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Join&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;temp2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;LOAD ProjectID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="font-size: 13.3333px;"&gt;sheet_date,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(sheet_date,'MM/DD/YYYY') as Date,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ProjTaskID, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; worked_hours, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Billable, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EmployeeID,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; UserName as FullName&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[..\RM_Extracted_QVD\EXT_ResourceTimesheet.qvd]&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Output which I got:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_1.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/165076_Screenshot_1.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;I have combined Date and sheet_date into a single field as "Date". But in the above screenshot, multiple values repeated for the same date as you can see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Output which I expect:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot_2.png" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/165086_Screenshot_2.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Please suggest some other ways to achieve this. &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/Join-two-columns/m-p/1353431#M834455</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Join two columns</title>
      <link>https://community.qlik.com/t5/QlikView/Join-two-columns/m-p/1353432#M834456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In temp1 try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Date(floor(Date),'MM/DD/YYYY') as Date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;and In temp2&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Date(floor(sheet_date),'MM/DD/YYYY') as Date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Prashant&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 11:35:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-two-columns/m-p/1353432#M834456</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2017-05-29T11:35:28Z</dc:date>
    </item>
    <item>
      <title>Re: Join two columns</title>
      <link>https://community.qlik.com/t5/QlikView/Join-two-columns/m-p/1353433#M834457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;SPAN style="color: #ff0000;"&gt;Distinct&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 11:36:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-two-columns/m-p/1353433#M834457</guid>
      <dc:creator>ahaahaaha</dc:creator>
      <dc:date>2017-05-29T11:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Join two columns</title>
      <link>https://community.qlik.com/t5/QlikView/Join-two-columns/m-p/1353434#M834458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please share the qvd's&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 11:36:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-two-columns/m-p/1353434#M834458</guid>
      <dc:creator>qlikview979</dc:creator>
      <dc:date>2017-05-29T11:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: Join two columns</title>
      <link>https://community.qlik.com/t5/QlikView/Join-two-columns/m-p/1353435#M834459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be use DISTINCT keyword&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 May 2017 11:37:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Join-two-columns/m-p/1353435#M834459</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-05-29T11:37:58Z</dc:date>
    </item>
  </channel>
</rss>

