<?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 doublons in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/doublons/m-p/1218079#M389814</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;I hope this finds you very well.&lt;/P&gt;&lt;P&gt;I have two rows in my dashbord that are exaclty the same. This two rows are comming from two different data bases. I have a flag field to detect that STC or POSA&lt;/P&gt;&lt;P&gt;If i have exactly the same rows, I would like to display only row coming from posa database&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea how to do that? here's an example :&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/152136_Capture.PNG" style="height: 65px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Feb 2017 10:36:43 GMT</pubDate>
    <dc:creator>master_student</dc:creator>
    <dc:date>2017-02-06T10:36:43Z</dc:date>
    <item>
      <title>doublons</title>
      <link>https://community.qlik.com/t5/QlikView/doublons/m-p/1218079#M389814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;I hope this finds you very well.&lt;/P&gt;&lt;P&gt;I have two rows in my dashbord that are exaclty the same. This two rows are comming from two different data bases. I have a flag field to detect that STC or POSA&lt;/P&gt;&lt;P&gt;If i have exactly the same rows, I would like to display only row coming from posa database&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea how to do that? here's an example :&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/152136_Capture.PNG" style="height: 65px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2017 10:36:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/doublons/m-p/1218079#M389814</guid>
      <dc:creator>master_student</dc:creator>
      <dc:date>2017-02-06T10:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: doublons</title>
      <link>https://community.qlik.com/t5/QlikView/doublons/m-p/1218080#M389815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We can better help you with some sample data, of your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2017 11:03:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/doublons/m-p/1218080#M389815</guid>
      <dc:creator>ganeshsvm</dc:creator>
      <dc:date>2017-02-06T11:03:56Z</dc:date>
    </item>
    <item>
      <title>Re: doublons</title>
      <link>https://community.qlik.com/t5/QlikView/doublons/m-p/1218081#M389816</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;You can load first the data from POSA and then the data from STC using the where clause Exists. You have to put all the common fields concatenated in other field and with not exist not loading those record. For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;POSA:&lt;/P&gt;&lt;P&gt;LOAD * Inline &lt;/P&gt;&lt;P&gt;[DATA,AMOUNT,CLIENT,ID&lt;/P&gt;&lt;P&gt;12/12/2016,12,Maria,1&lt;/P&gt;&lt;P&gt;12/01/2016,13,Marcel,2&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tmp:&lt;/P&gt;&lt;P&gt;LOAD *, DATA&amp;amp;AMOUNT&amp;amp;CLIENT AS DATA_AMOUNT_CLIENT&lt;/P&gt;&lt;P&gt;Resident POSA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP TABLE POSA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE(tmp)&lt;/P&gt;&lt;P&gt;LOAD * Inline &lt;/P&gt;&lt;P&gt;[DATA,AMOUNT,CLIENT,ID&lt;/P&gt;&lt;P&gt;12/01/2016,13,Marcel,1&lt;/P&gt;&lt;P&gt;13/01/2016,13,Marcel,32&lt;/P&gt;&lt;P&gt;]&lt;/P&gt;&lt;P&gt;WHERE NOT Exists (DATA_AMOUNT_CLIENT,DATA&amp;amp;AMOUNT&amp;amp;CLIENT);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Cosmina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Feb 2017 11:14:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/doublons/m-p/1218081#M389816</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-02-06T11:14:45Z</dc:date>
    </item>
  </channel>
</rss>

