<?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 duplicates in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/remove-duplicates/m-p/1400716#M797236</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to suppres null values in the properties &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(disticnt FieldName)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Dec 2017 06:49:11 GMT</pubDate>
    <dc:creator>Chanty4u</dc:creator>
    <dc:date>2017-12-14T06:49:11Z</dc:date>
    <item>
      <title>remove duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/remove-duplicates/m-p/1400715#M797235</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;We need to remove duplicates which is refering for unique ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For one product ID we are getting two supplier one is null and one is supplier name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here we need to remove the null supplier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the below for reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/186909_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&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/remove-duplicates/m-p/1400715#M797235</guid>
      <dc:creator>nareshthavidishetty</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: remove duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/remove-duplicates/m-p/1400716#M797236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to suppres null values in the properties &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(disticnt FieldName)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 06:49:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/remove-duplicates/m-p/1400716#M797236</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2017-12-14T06:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: remove duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/remove-duplicates/m-p/1400717#M797237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If this could have been resolved in the script, that would have been the best approach. For front-end solution try like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sum(&lt;STRONG&gt;{&amp;lt;Supplier={'*'}&amp;gt;}&lt;/STRONG&gt; [YourField])&lt;/P&gt;&lt;P&gt;Or,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Sum(&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;&lt;STRONG&gt;{&amp;lt;Supplier={"=Len(Trim(Supplier))&amp;gt;0"}&amp;gt;}&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333px;"&gt; [YourField])&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 06:53:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/remove-duplicates/m-p/1400717#M797237</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2017-12-14T06:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: remove duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/remove-duplicates/m-p/1400718#M797238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try to create calculated dimension like below&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;method 1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;=if( len(Supplier)&amp;gt;0,Product_ID)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;and make sure to suppress null value.&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;method 2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;dimension,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;product_id&lt;/P&gt;&lt;P&gt;supplier&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;create measure&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum( {&amp;lt;Supplier={"=len(Supplier)&amp;gt;0"}&amp;gt;}Qty)&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;method 3:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;exclude null supplier from back end script using where clause.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;load * Inline [&lt;/P&gt;&lt;P&gt;Product_ID,Supplier,Qty&lt;/P&gt;&lt;P&gt;0021020919,ABC,1518&lt;/P&gt;&lt;P&gt;0021020919,,1518] &lt;STRONG&gt;where len(Supplier)&amp;gt;0;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="186913" alt="Capture.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/186913_Capture.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 06:57:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/remove-duplicates/m-p/1400718#M797238</guid>
      <dc:creator>devarasu07</dc:creator>
      <dc:date>2017-12-14T06:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: remove duplicates</title>
      <link>https://community.qlik.com/t5/QlikView/remove-duplicates/m-p/1400719#M797239</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;Both were correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But can mark only one as correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2017 07:05:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/remove-duplicates/m-p/1400719#M797239</guid>
      <dc:creator>nareshthavidishetty</dc:creator>
      <dc:date>2017-12-14T07:05:36Z</dc:date>
    </item>
  </channel>
</rss>

