<?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 Identify duplicate records upto Previous quarter in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Identify-duplicate-records-upto-Previous-quarter/m-p/1581038#M442880</link>
    <description>&lt;P&gt;Hello Friends&lt;/P&gt;&lt;P&gt;I have attached data where I need to identify&amp;nbsp; Mobile numbers as Repeat if they were available upto end of previous quarter.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example: if mobile no of May is also available before 31st March (upto last Quarter)&amp;nbsp; then it is repeat. Else fresh.&lt;/P&gt;&lt;P&gt;Raw sheet is the data and Output sheet is the required result&lt;/P&gt;</description>
    <pubDate>Thu, 16 May 2019 12:47:59 GMT</pubDate>
    <dc:creator>santhana</dc:creator>
    <dc:date>2019-05-16T12:47:59Z</dc:date>
    <item>
      <title>Identify duplicate records upto Previous quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-duplicate-records-upto-Previous-quarter/m-p/1581038#M442880</link>
      <description>&lt;P&gt;Hello Friends&lt;/P&gt;&lt;P&gt;I have attached data where I need to identify&amp;nbsp; Mobile numbers as Repeat if they were available upto end of previous quarter.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example: if mobile no of May is also available before 31st March (upto last Quarter)&amp;nbsp; then it is repeat. Else fresh.&lt;/P&gt;&lt;P&gt;Raw sheet is the data and Output sheet is the required result&lt;/P&gt;</description>
      <pubDate>Thu, 16 May 2019 12:47:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-duplicate-records-upto-Previous-quarter/m-p/1581038#M442880</guid>
      <dc:creator>santhana</dc:creator>
      <dc:date>2019-05-16T12:47:59Z</dc:date>
    </item>
    <item>
      <title>Re: Identify duplicate records upto Previous quarter</title>
      <link>https://community.qlik.com/t5/QlikView/Identify-duplicate-records-upto-Previous-quarter/m-p/1582123#M442976</link>
      <description>&lt;P&gt;Is this needed to be done in the script? If yes, then try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Table:
LOAD *,
	 Date#(Month&amp;amp;'-'&amp;amp;Year, 'MMM-YYYY') as MonthYear;
LOAD Mob_No, 
     Month, 
     Year
FROM
[..\..\Downloads\Sample_Test.xlsx]
(ooxml, embedded labels, table is Raw);

FinalTable:
LOAD *,
	 If(Mob_No = Previous(Mob_No), 'Repeat', 'Fresh') as Result
Resident Table
Order By Mob_No, MonthYear;

DROP Table Table;&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 20 May 2019 11:15:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Identify-duplicate-records-upto-Previous-quarter/m-p/1582123#M442976</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2019-05-20T11:15:55Z</dc:date>
    </item>
  </channel>
</rss>

