<?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 Surpress unmatched records in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Surpress-unmatched-records/m-p/221264#M74086</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I usually use a left join in the script or if there is only one field I use the mapping function. If you use the Left Join, make sure the first field in your joined table is the CustomerID and you will add data only for the customers that exist in your other data. If you just want to add the Name, I would use the mapping function instead (2nd example).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Data:&lt;BR /&gt;LOAD&lt;BR /&gt;CustomerID,&lt;BR /&gt;Field1,&lt;BR /&gt;Field2&lt;BR /&gt;Resident DataSource;&lt;BR /&gt;&lt;BR /&gt;Customer:&lt;BR /&gt;LEFT JOIN (Visit)&lt;BR /&gt;LOAD&lt;BR /&gt;CustomerID,&lt;BR /&gt;CustomerName,&lt;BR /&gt;OtherCustomerInfo&lt;BR /&gt;Resident CustomerData;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Customer:&lt;BR /&gt;MAPPING LOAD&lt;BR /&gt;CustomerID,&lt;BR /&gt;CustomerName&lt;BR /&gt;Resident CustomerData;&lt;BR /&gt;Data:&lt;BR /&gt;LOAD&lt;BR /&gt;CustomerID,&lt;BR /&gt;ApplyMap('Customer',CustomerID) as CustomerName,&lt;BR /&gt;Field1,&lt;BR /&gt;Field2&lt;BR /&gt;Resident DataSource;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;H4&gt;&lt;/H4&gt;&lt;H4&gt;&lt;/H4&gt;&lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H4&gt;&lt;/H4&gt;&lt;H4&gt;&lt;/H4&gt;&lt;H4&gt;&lt;/H4&gt;&lt;H4&gt;&lt;/H4&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Oct 2009 22:49:11 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-10-21T22:49:11Z</dc:date>
    <item>
      <title>Surpress unmatched records</title>
      <link>https://community.qlik.com/t5/QlikView/Surpress-unmatched-records/m-p/221262#M74084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I'm loading several files into my QV application and letting QV join them together for me, which works fine. Is there a way to prevent QV showing unmatched records in a listbox?&lt;/P&gt;&lt;P&gt;So for example, I have a customer lookup file with Customer ID and Name, and a sales file with Customer ID, Product and Qty. QV automatically joins the two files together by Customer ID. There are some customers who have no matches on the sales file and I don't want those customers to appear in the Customer listbox. Can I get QV to automatically remove them?&lt;/P&gt;&lt;P&gt;Hope that makes sense, thanks for your help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 20:37:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Surpress-unmatched-records/m-p/221262#M74084</guid>
      <dc:creator />
      <dc:date>2009-10-21T20:37:13Z</dc:date>
    </item>
    <item>
      <title>Surpress unmatched records</title>
      <link>https://community.qlik.com/t5/QlikView/Surpress-unmatched-records/m-p/221263#M74085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Use alias for Sales file.&lt;/P&gt;&lt;P&gt;Example Customer ID AS Cid&lt;/P&gt;&lt;P&gt;and take Cid in list box&lt;/P&gt;&lt;P&gt;I hope it ll use for u&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 21:05:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Surpress-unmatched-records/m-p/221263#M74085</guid>
      <dc:creator>sathishkumar_go</dc:creator>
      <dc:date>2009-10-21T21:05:42Z</dc:date>
    </item>
    <item>
      <title>Surpress unmatched records</title>
      <link>https://community.qlik.com/t5/QlikView/Surpress-unmatched-records/m-p/221264#M74086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I usually use a left join in the script or if there is only one field I use the mapping function. If you use the Left Join, make sure the first field in your joined table is the CustomerID and you will add data only for the customers that exist in your other data. If you just want to add the Name, I would use the mapping function instead (2nd example).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Data:&lt;BR /&gt;LOAD&lt;BR /&gt;CustomerID,&lt;BR /&gt;Field1,&lt;BR /&gt;Field2&lt;BR /&gt;Resident DataSource;&lt;BR /&gt;&lt;BR /&gt;Customer:&lt;BR /&gt;LEFT JOIN (Visit)&lt;BR /&gt;LOAD&lt;BR /&gt;CustomerID,&lt;BR /&gt;CustomerName,&lt;BR /&gt;OtherCustomerInfo&lt;BR /&gt;Resident CustomerData;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;Customer:&lt;BR /&gt;MAPPING LOAD&lt;BR /&gt;CustomerID,&lt;BR /&gt;CustomerName&lt;BR /&gt;Resident CustomerData;&lt;BR /&gt;Data:&lt;BR /&gt;LOAD&lt;BR /&gt;CustomerID,&lt;BR /&gt;ApplyMap('Customer',CustomerID) as CustomerName,&lt;BR /&gt;Field1,&lt;BR /&gt;Field2&lt;BR /&gt;Resident DataSource;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;H4&gt;&lt;/H4&gt;&lt;H4&gt;&lt;/H4&gt;&lt;P style="font-style: italic"&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H4&gt;&lt;/H4&gt;&lt;H4&gt;&lt;/H4&gt;&lt;H4&gt;&lt;/H4&gt;&lt;H4&gt;&lt;/H4&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 22:49:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Surpress-unmatched-records/m-p/221264#M74086</guid>
      <dc:creator />
      <dc:date>2009-10-21T22:49:11Z</dc:date>
    </item>
    <item>
      <title>Surpress unmatched records</title>
      <link>https://community.qlik.com/t5/QlikView/Surpress-unmatched-records/m-p/221265#M74087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry the first one should read LEFT JOIN (Data) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Oct 2009 22:51:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Surpress-unmatched-records/m-p/221265#M74087</guid>
      <dc:creator />
      <dc:date>2009-10-21T22:51:50Z</dc:date>
    </item>
  </channel>
</rss>

