<?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: Keeping unique rows in a table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014000#M938955</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you want to eliminate the data from the qvw&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;from table&lt;/P&gt;&lt;P&gt;WHERE [Report Status ]='N';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if you want to just eliminate in front end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the expression add the set analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;[Report Status ]={'N'}&amp;gt; }sales )&lt;/P&gt;&lt;P&gt;or in the dimension&lt;/P&gt;&lt;P&gt;if ([Report Status ]='N', [Transaction Reference Number]) and check the supress null option&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Feb 2016 11:42:15 GMT</pubDate>
    <dc:creator>avinashelite</dc:creator>
    <dc:date>2016-02-11T11:42:15Z</dc:date>
    <item>
      <title>Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1013998#M938953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;Table 1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="width: 319px;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD height="20" style="border: 0px black; border-image: none;" width="214"&gt;&lt;SPAN style="color: #000000; font-family: Calibri; font-size: 12pt;"&gt;Transaction reference number&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD style="border: 0px black; border-image: none;" width="105"&gt;&lt;SPAN style="color: #000000; font-family: Calibri; font-size: 12pt;"&gt;Report status&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20" style="border: 0px black; border-image: none; background-color: yellow;"&gt;&lt;SPAN style="color: #000000; font-family: Calibri; font-size: 12pt;"&gt;'18818136SELL&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD style="border: 0px black; border-image: none; background-color: yellow;"&gt;&lt;SPAN style="color: #000000; font-family: Calibri; font-size: 12pt;"&gt;N&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD height="20" style="border: 0px black; border-image: none; background-color: yellow;"&gt;&lt;SPAN style="color: #000000; font-family: Calibri; font-size: 12pt;"&gt;'18818136SELL&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD style="border: 0px black; border-image: none; background-color: yellow;"&gt;&lt;SPAN style="color: #000000; font-family: Calibri; font-size: 12pt;"&gt;U&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table with number of columns, two of which are 'transaction ref.no.' and 'report status'. There are a number of duplicate trans.ref.no. with stauts U and N but I only want to keep those with status N in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do this? I am new to qlik so don't have much idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 11:02:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1013998#M938953</guid>
      <dc:creator />
      <dc:date>2016-02-11T11:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1013999#M938954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In script, try&lt;/P&gt;&lt;P&gt;Load Distinct [Transaction Reference Number]&lt;/P&gt;&lt;P&gt;From source where [Report Status ]='N';&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 11:38:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1013999#M938954</guid>
      <dc:creator>settu_periasamy</dc:creator>
      <dc:date>2016-02-11T11:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014000#M938955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you want to eliminate the data from the qvw&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;from table&lt;/P&gt;&lt;P&gt;WHERE [Report Status ]='N';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or if you want to just eliminate in front end&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the expression add the set analysis&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;[Report Status ]={'N'}&amp;gt; }sales )&lt;/P&gt;&lt;P&gt;or in the dimension&lt;/P&gt;&lt;P&gt;if ([Report Status ]='N', [Transaction Reference Number]) and check the supress null option&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 11:42:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014000#M938955</guid>
      <dc:creator>avinashelite</dc:creator>
      <dc:date>2016-02-11T11:42:15Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014001#M938956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be something along these lines&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD [Transaction reference number],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Report status],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OtherFields&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM Source;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Left Join (Table)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD &lt;SPAN style="font-size: 13.3333px;"&gt;[Transaction reference number],&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13.3333px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Count(&lt;SPAN style="font-size: 13.3333px;"&gt;DISTINCT &lt;SPAN style="font-size: 13.3333px;"&gt;[Report status]&lt;/SPAN&gt;) as Count&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; font-size: 13.3333px;"&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; font-size: 13.3333px;"&gt;Group By &lt;SPAN style="font-size: 13.3333px;"&gt;[Transaction reference number]&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; font-size: 13.3333px;"&gt;FinalTable:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; font-size: 13.3333px;"&gt;NoConcatenate&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; font-size: 13.3333px;"&gt;LOAD *&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; font-size: 13.3333px;"&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;Where ([Report status] = 'N' and Count &amp;gt; 1) or ([Report status] = 'Y' and Count = 1);&lt;/STRONG&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 11:44:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014001#M938956</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-11T11:44:23Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014002#M938957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks guys for your response.&lt;/P&gt;&lt;P&gt;I have a further complication in what I am trying to achieve. There is a 2nd condition I have to meet. So I will explain the issue again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The FinalTable is what my table should look like.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114318_pastedImage_0.png" style="max-height: 900px; max-width: 1200px;" /&gt;&lt;/P&gt;&lt;P&gt;Criteria for FinalTable:&lt;/P&gt;&lt;P&gt;1.If duplicate trans.ref.no with status U and N, then keep U.&lt;/P&gt;&lt;P&gt;2. If duplicate trans. ref. no with multiple U, then keep the one with last Date.&lt;/P&gt;&lt;P&gt;3. But if there are no duplicates then both U and N status to be in the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope I have explained myself better now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 12:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014002#M938957</guid>
      <dc:creator />
      <dc:date>2016-02-11T12:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014003#M938958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;May be this:&lt;/SPAN&gt;&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;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;LOAD [Transaction reference number],&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Report status],&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATE&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;FROM Source;&lt;/STRONG&gt;&lt;/SPAN&gt;&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;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG style="text-decoration: line-through;"&gt;Right Join (Table)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif; text-decoration: line-through;"&gt;&lt;STRONG&gt;LOAD &lt;SPAN style="font-style: inherit;"&gt;[Transaction reference number],&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 10pt; font-family: arial, helvetica, sans-serif; text-decoration: line-through;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Only(&lt;SPAN style="font-style: inherit;"&gt;[Report status]) as &lt;SPAN style="font-style: inherit;"&gt;[Report status]&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif; text-decoration: line-through;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Max(DATE)) as DATE&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif; text-decoration: line-through;"&gt;&lt;STRONG&gt;Resident Table&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="text-decoration: line-through;"&gt;&lt;SPAN style="color: #3d3d3d; font-size: 10pt; font-style: inherit; font-family: arial, helvetica, sans-serif; text-decoration: line-through;"&gt;&lt;STRONG&gt;Group By &lt;SPAN style="font-style: inherit;"&gt;[Transaction reference number]&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="color: #3d3d3d; font-style: inherit; font-size: 10pt; font-family: arial, helvetica, sans-serif;"&gt;&lt;STRONG&gt;&lt;STRONG style="text-decoration: line-through;"&gt;Where &lt;SPAN style="font-style: inherit;"&gt;[Report status] = 'U'&lt;/SPAN&gt;;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Right Join (Table)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD [Transaction reference number],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Only([Report status]) as [Report status],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Max(DATE)) as DATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where [Report status] = 'U'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Group By [Transaction reference number];&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 14:44:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014003#M938958</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-11T14:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014004#M938959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For you sample, find attached the screenshots and application:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Table:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD * Inline [&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Transaction reference number, Status, DATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'18813263SELL, U, 12/01/2014&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'18813263SELL, N, 15/09/2015&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'18813263SELL, U, 12/01/2016&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'18813269SELL, U, 12/01/2014&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'18813269SELL, N, 15/09/2015&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'18813269SELL, U, 12/01/2016&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'18813275SELL, U, 12/01/2014&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'18813275SELL, N, 15/09/2015&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'18813279SELL, U, 12/01/2014&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'18813279SELL, N, 15/09/2015&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Right Join (Table)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD [Transaction reference number],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Only(Status) as Status,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date(Max(DATE)) as DATE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Resident Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where Status = 'U'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Group By [Transaction reference number];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/114336_Capture.PNG" style="height: auto;" /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 14:50:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014004#M938959</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-02-11T14:50:38Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014005#M938960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or if you don't want to lose a single N record:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;SET&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;DATEFORMAT&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; = 'DD/MM/YYYY';&lt;BR /&gt; &lt;BR /&gt; TABLE:&lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Transaction reference number]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Date&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Max&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Group&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;By&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Transaction reference number]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Inline&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[&lt;BR /&gt;&amp;nbsp; Transaction reference number, Status, DATE&lt;BR /&gt;&amp;nbsp; '18813263SELL, U, 12/01/2014&lt;BR /&gt;&amp;nbsp; '18813263SELL, N, 15/09/2015&lt;BR /&gt;&amp;nbsp; '18813263SELL, U, 12/01/2016&lt;BR /&gt;&amp;nbsp; '18813269SELL, U, 12/01/2014&lt;BR /&gt;&amp;nbsp; '18813269SELL, N, 15/09/2015&lt;BR /&gt;&amp;nbsp; '18813269SELL, U, 12/01/2016&lt;BR /&gt;&amp;nbsp; '18813275SELL, U, 12/01/2014&lt;BR /&gt;&amp;nbsp; '18813275SELL, N, 15/09/2015&lt;BR /&gt;&amp;nbsp; '18813279SELL, U, 12/01/2014&lt;BR /&gt;&amp;nbsp; '18813279SELL, N, 15/09/2015&lt;BR /&gt;&lt;STRONG&gt; '18813288SELL, N, 15/09/2015&lt;/STRONG&gt;&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt; &lt;BR /&gt; RESULT:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;LOAD&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Transaction reference number]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FirstValue&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;,&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;FirstValue&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;as&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;DATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Resident&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; TABLE&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;GROUP&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;BY&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Transaction reference number]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;ORDER&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;BY&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Transaction reference number]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;Status&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;desc&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 8pt;"&gt;DROP&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;TABLE&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; TABLE; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Feb 2016 15:05:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014005#M938960</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-02-11T15:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014006#M938961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This code is gives exactly the same result. Thankyou&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2016 12:51:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014006#M938961</guid>
      <dc:creator />
      <dc:date>2016-02-16T12:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014007#M938962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Palanisamy Devaraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since you've responded to my post, I assume you are referring to my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is giving the same result as the code posted by whom?&lt;/P&gt;&lt;P&gt;Maybe I missed something, but I don't think that the other suggestions are producing the exact same results.&lt;/P&gt;&lt;P&gt;Note that I've added another test case for criteria 3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2016 22:03:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014007#M938962</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2016-02-16T22:03:10Z</dc:date>
    </item>
    <item>
      <title>Re: Keeping unique rows in a table</title>
      <link>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014008#M938963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swuel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes , i am referring to your code and it works as expected by the @abhi_kash .(who started the tread).Thankyou.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 11.7px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;@&lt;A href="https://community.qlik.com/people/abhi_kash"&gt;abhi_kash&lt;/A&gt; ,Please mark as correct Answer if its works for you.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Feb 2016 11:31:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Keeping-unique-rows-in-a-table/m-p/1014008#M938963</guid>
      <dc:creator />
      <dc:date>2016-02-17T11:31:43Z</dc:date>
    </item>
  </channel>
</rss>

