<?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 Set Analysis: How to remove null values in a straight table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-Analysis-How-to-remove-null-values-in-a-straight-table/m-p/169442#M40244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi People,&lt;/P&gt;&lt;P&gt;Currently i have a little problem concerning applying set analysis in my straight table.&lt;/P&gt;&lt;P&gt;The situation is as follows:&lt;/P&gt;&lt;P&gt;I use QV 8.5.&lt;/P&gt;&lt;P&gt;I create straight table.&lt;/P&gt;&lt;P&gt;I have 1 dimsension called "Collection".&lt;/P&gt;&lt;P&gt;I have multiple expressions like sum(SalesAmount) , sum(receipts) etc. However, 1 of my expressions contains set analysis as follows:&lt;/P&gt;&lt;P&gt;=&lt;/P&gt;&lt;P&gt;&lt;/P&gt;sum( {1} SalesAmount)&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;This expression must show the end user the total sales amount at whatever selection is chosen. It works fine.&lt;/P&gt;&lt;P&gt;Nevertheless, the straight table shows an enormous amount of white (null)-values when i use the chart to analyse data. Note that the dimension contains the following setting: &lt;STRONG&gt;suppress null-values&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;When i deactivate the set analysis expression, the null-values are suppressed correctly. So my question is how to suppress the null-values in case of an set analysis expression.&lt;/P&gt;&lt;P&gt;Thanks for your help in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 28 Aug 2009 15:14:05 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-08-28T15:14:05Z</dc:date>
    <item>
      <title>Set Analysis: How to remove null values in a straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-How-to-remove-null-values-in-a-straight-table/m-p/169442#M40244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi People,&lt;/P&gt;&lt;P&gt;Currently i have a little problem concerning applying set analysis in my straight table.&lt;/P&gt;&lt;P&gt;The situation is as follows:&lt;/P&gt;&lt;P&gt;I use QV 8.5.&lt;/P&gt;&lt;P&gt;I create straight table.&lt;/P&gt;&lt;P&gt;I have 1 dimsension called "Collection".&lt;/P&gt;&lt;P&gt;I have multiple expressions like sum(SalesAmount) , sum(receipts) etc. However, 1 of my expressions contains set analysis as follows:&lt;/P&gt;&lt;P&gt;=&lt;/P&gt;&lt;P&gt;&lt;/P&gt;sum( {1} SalesAmount)&lt;BR /&gt;&lt;BR /&gt; &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;This expression must show the end user the total sales amount at whatever selection is chosen. It works fine.&lt;/P&gt;&lt;P&gt;Nevertheless, the straight table shows an enormous amount of white (null)-values when i use the chart to analyse data. Note that the dimension contains the following setting: &lt;STRONG&gt;suppress null-values&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;When i deactivate the set analysis expression, the null-values are suppressed correctly. So my question is how to suppress the null-values in case of an set analysis expression.&lt;/P&gt;&lt;P&gt;Thanks for your help in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Aug 2009 15:14:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-How-to-remove-null-values-in-a-straight-table/m-p/169442#M40244</guid>
      <dc:creator />
      <dc:date>2009-08-28T15:14:05Z</dc:date>
    </item>
    <item>
      <title>Set Analysis: How to remove null values in a straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-How-to-remove-null-values-in-a-straight-table/m-p/169443#M40245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Since the {1} set says to ignore your selections, it will pretty much always return a value, even when the other columns are null. So I'm betting that changing the expression to something along these lines would fix the problem:&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;if(column(1) or column(2) or...,sum({1}SalesAmount))&lt;/P&gt;&lt;P&gt;Basically, it says to only calculate the sales amount if one of the other columns is already established.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 29 Aug 2009 02:04:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-How-to-remove-null-values-in-a-straight-table/m-p/169443#M40245</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-08-29T02:04:34Z</dc:date>
    </item>
    <item>
      <title>Set Analysis: How to remove null values in a straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-How-to-remove-null-values-in-a-straight-table/m-p/169444#M40246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ho John,&lt;/P&gt;&lt;P&gt;First of all, thank you for your reply. I've tried your solution for the problem. However, it doesn't seem to work. Have you tried it yourself yet? Maybe I haven't explained my question clear enough?&lt;/P&gt;&lt;P&gt;If you want me to make a sample app to make things clear then I'll do that. However, maybe you've more tips for me.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Tjeerd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Aug 2009 14:33:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-How-to-remove-null-values-in-a-straight-table/m-p/169444#M40246</guid>
      <dc:creator />
      <dc:date>2009-08-31T14:33:50Z</dc:date>
    </item>
    <item>
      <title>Set Analysis: How to remove null values in a straight table</title>
      <link>https://community.qlik.com/t5/QlikView/Set-Analysis-How-to-remove-null-values-in-a-straight-table/m-p/169445#M40247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, I hadn't tried it myself. But I have now, and it's working exactly like I expected. So perhaps I'm not understanding your problem still. Here's the example of what I THOUGHT your problem was, and my solution to that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Sep 2009 02:24:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-Analysis-How-to-remove-null-values-in-a-straight-table/m-p/169445#M40247</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2009-09-01T02:24:18Z</dc:date>
    </item>
  </channel>
</rss>

