<?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: Exclude records in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479590#M1139721</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I can see you have a transaction table where there are various line for the product.&lt;/P&gt;&lt;P&gt;So I would concat the products for each order number (left join (transaction) load orderno, concat(Product) as Concatfield resident transactions group by orderno). There are all products concatenated, so you can check only these orders where only product a is in.&lt;/P&gt;&lt;P&gt;Check attachment.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Sep 2013 19:01:47 GMT</pubDate>
    <dc:creator>martinpohl</dc:creator>
    <dc:date>2013-09-25T19:01:47Z</dc:date>
    <item>
      <title>Exclude records</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479586#M1139717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;I have a customer table where I would like to sum sales but only where the transaction has Item A only and not A,B,C or A D &amp;amp; E - every attempt returns where A is included in any transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My expression Sum (&amp;lt;{Product={A}&amp;gt;}TransactionValue)&amp;nbsp; displays all transactions where A has been purchased - any ideas gratefully appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 18:23:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479586#M1139717</guid>
      <dc:creator>pauledrich</dc:creator>
      <dc:date>2013-09-25T18:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479587#M1139718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Item A&lt;/SPAN&gt;" is another field?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 18:27:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479587#M1139718</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-09-25T18:27:32Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479588#M1139719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe something like this, assuming you have something like a TransactionID:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;=Sum (&amp;lt;{Product={A}, TransactionID = {"=count(distinct Product)=1"}&amp;gt;} TransactionValue)&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 18:33:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479588#M1139719</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2013-09-25T18:33:44Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479589#M1139720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Sum (&amp;lt;{Product={A}-P({&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f6f6f6;"&gt;Product={"B","C","D"}&amp;gt;}&lt;/SPAN&gt;)&amp;gt;} TransactionValue) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 18:41:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479589#M1139720</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2013-09-25T18:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479590#M1139721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As I can see you have a transaction table where there are various line for the product.&lt;/P&gt;&lt;P&gt;So I would concat the products for each order number (left join (transaction) load orderno, concat(Product) as Concatfield resident transactions group by orderno). There are all products concatenated, so you can check only these orders where only product a is in.&lt;/P&gt;&lt;P&gt;Check attachment.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 19:01:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479590#M1139721</guid>
      <dc:creator>martinpohl</dc:creator>
      <dc:date>2013-09-25T19:01:47Z</dc:date>
    </item>
    <item>
      <title>Re: Exclude records</title>
      <link>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479591#M1139722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi - assume item A is under the heading product and some customers purchase more than one product B,C &amp;amp;D with one transaction number and one Total Amount. I am trying to only show customers that only bought product A and not any other product.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 10:00:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Exclude-records/m-p/479591#M1139722</guid>
      <dc:creator>pauledrich</dc:creator>
      <dc:date>2013-09-26T10:00:50Z</dc:date>
    </item>
  </channel>
</rss>

