<?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: Getting all active records merged in 1 record in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Getting-all-active-records-merged-in-1-record/m-p/1059766#M941814</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post a source table and the result table you expect. An excel file with examples for both tables (including data) will be fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 24 Jan 2016 08:26:04 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2016-01-24T08:26:04Z</dc:date>
    <item>
      <title>Getting all active records merged in 1 record</title>
      <link>https://community.qlik.com/t5/QlikView/Getting-all-active-records-merged-in-1-record/m-p/1059765#M941813</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌Is this possible what i want to achieve shown in this image.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the image attached, the data shown above is the type of data i have in the table, and the data shown below in the image is what is requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought it might be possible using the loop, but not able to get the correct output using loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2020 18:02:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Getting-all-active-records-merged-in-1-record/m-p/1059765#M941813</guid>
      <dc:creator>gaurav2017</dc:creator>
      <dc:date>2020-11-20T18:02:30Z</dc:date>
    </item>
    <item>
      <title>Re: Getting all active records merged in 1 record</title>
      <link>https://community.qlik.com/t5/QlikView/Getting-all-active-records-merged-in-1-record/m-p/1059766#M941814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please post a source table and the result table you expect. An excel file with examples for both tables (including data) will be fine.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jan 2016 08:26:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Getting-all-active-records-merged-in-1-record/m-p/1059766#M941814</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2016-01-24T08:26:04Z</dc:date>
    </item>
    <item>
      <title>Re: Getting all active records merged in 1 record</title>
      <link>https://community.qlik.com/t5/QlikView/Getting-all-active-records-merged-in-1-record/m-p/1059767#M941815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From your image it seems you need a (pseudocode) &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; [&lt;SPAN style="font-size: 13.3333px;"&gt;Employee Id], &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max(Start), &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; max (End), &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; concat (distinct Type, ',')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;resident yourtable&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;group by [Employee Id];&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 24 Jan 2016 09:08:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Getting-all-active-records-merged-in-1-record/m-p/1059767#M941815</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2016-01-24T09:08:19Z</dc:date>
    </item>
    <item>
      <title>Re: Getting all active records merged in 1 record</title>
      <link>https://community.qlik.com/t5/QlikView/Getting-all-active-records-merged-in-1-record/m-p/1059768#M941816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use the group by function to get the latest values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EmployeeID,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(Start) AS Start,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Max(End) AS End,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concat(Distinct Type , ',') AS Type&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;From Source&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Group By&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; EmployeeID&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 01:19:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Getting-all-active-records-merged-in-1-record/m-p/1059768#M941816</guid>
      <dc:creator />
      <dc:date>2016-02-11T01:19:07Z</dc:date>
    </item>
  </channel>
</rss>

