<?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: Remove duplicate values based on different field in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Remove-duplicate-values-based-on-different-field/m-p/1614735#M735623</link>
    <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;First of all your data seems to be non-uniformal:&lt;/P&gt;&lt;P&gt;Date format for "03/03-2018" is different than "02/01/2020".&lt;/P&gt;&lt;P&gt;But after you sort that out you could do something like this for load script:&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;load Institute,&lt;/P&gt;&lt;P&gt;[Terminate date]&lt;/P&gt;&lt;P&gt;from Data.txt&lt;/P&gt;&lt;P&gt;where date#([Terminate date],'DD/MM/YYYY')&amp;gt;date(today()) or not(isnull(date#([Terminate date],'DD/MM/YYYY')));&lt;/P&gt;</description>
    <pubDate>Wed, 21 Aug 2019 10:56:28 GMT</pubDate>
    <dc:creator>mr_janne</dc:creator>
    <dc:date>2019-08-21T10:56:28Z</dc:date>
    <item>
      <title>Remove duplicate values based on different field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-duplicate-values-based-on-different-field/m-p/1614709#M735621</link>
      <description>&lt;P&gt;Hi Qlik Community&lt;/P&gt;&lt;P&gt;I have a field called Institute with repeating values and a field terminate day.&amp;nbsp; Like this:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Institute &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/STRONG&gt; &lt;STRONG&gt;Terminate&lt;/STRONG&gt; &lt;STRONG&gt;date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;1 Science &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; -&lt;/P&gt;&lt;P&gt;1 Science &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 03/03-2018&lt;/P&gt;&lt;P&gt;2 Math &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&lt;/P&gt;&lt;P&gt;3 Space &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; -&lt;/P&gt;&lt;P&gt;3 Space &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp; 02/01/2020&lt;/P&gt;&lt;P&gt;&lt;EM&gt;etc...&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;My task is, how do I only show the institutes where there is either no terminate date at all, or where the terminate date is later than the current day.&lt;/P&gt;&lt;P&gt;I have tried a where clause in the load, but I can't quite get the syntax right.&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, how do I remove all the instances of institute where there is no terminate date or the terminate date is later than the current day.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is appreciated&lt;/P&gt;&lt;P&gt;Casper&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 02:41:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-duplicate-values-based-on-different-field/m-p/1614709#M735621</guid>
      <dc:creator>CanOls</dc:creator>
      <dc:date>2024-11-16T02:41:07Z</dc:date>
    </item>
    <item>
      <title>Re: Remove duplicate values based on different field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-duplicate-values-based-on-different-field/m-p/1614732#M735622</link>
      <description>&lt;P&gt;One way is as below:&lt;/P&gt;&lt;DIV&gt;&lt;FONT&gt;Data:&lt;BR /&gt;Load *&lt;BR /&gt;where Len(Trim([Terminate date])) &amp;gt; 0&lt;BR /&gt;and [Terminate date] &amp;lt; now();&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;Load * Inline [&lt;BR /&gt;Institute,Terminate date&lt;BR /&gt;1 Science,&lt;BR /&gt;1 Science,03/03/2018&lt;BR /&gt;2 Math,&lt;BR /&gt;3 Space,&lt;BR /&gt;3 Space,02/01/2020&lt;BR /&gt;];&lt;/FONT&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;FONT&gt;Hope this helps..&lt;/FONT&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Aug 2019 10:52:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-duplicate-values-based-on-different-field/m-p/1614732#M735622</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2019-08-21T10:52:56Z</dc:date>
    </item>
    <item>
      <title>Re: Remove duplicate values based on different field</title>
      <link>https://community.qlik.com/t5/QlikView/Remove-duplicate-values-based-on-different-field/m-p/1614735#M735623</link>
      <description>&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;First of all your data seems to be non-uniformal:&lt;/P&gt;&lt;P&gt;Date format for "03/03-2018" is different than "02/01/2020".&lt;/P&gt;&lt;P&gt;But after you sort that out you could do something like this for load script:&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;load Institute,&lt;/P&gt;&lt;P&gt;[Terminate date]&lt;/P&gt;&lt;P&gt;from Data.txt&lt;/P&gt;&lt;P&gt;where date#([Terminate date],'DD/MM/YYYY')&amp;gt;date(today()) or not(isnull(date#([Terminate date],'DD/MM/YYYY')));&lt;/P&gt;</description>
      <pubDate>Wed, 21 Aug 2019 10:56:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Remove-duplicate-values-based-on-different-field/m-p/1614735#M735623</guid>
      <dc:creator>mr_janne</dc:creator>
      <dc:date>2019-08-21T10:56:28Z</dc:date>
    </item>
  </channel>
</rss>

