<?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 many questions about straight table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223762#M76244</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Sum(If(Sales &amp;gt; 50 and amd Sales &amp;lt;100,Sales))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Dec 2010 06:38:44 GMT</pubDate>
    <dc:creator>deepakk</dc:creator>
    <dc:date>2010-12-15T06:38:44Z</dc:date>
    <item>
      <title>many questions about straight table</title>
      <link>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223761#M76243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have such a table.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="error loading image" class="jive-image error-loading-image" src="https://community.qlik.com/legacyfs/online/-3068_sourceID:3068" /&gt;&lt;/P&gt;&lt;P&gt;How can I filter sum(Sales) between 50 and 100 without selected any fields when the table 1st displayed.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="error loading image" class="jive-image error-loading-image" src="https://community.qlik.com/legacyfs/online/-3069_sourceID:3069" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 06:02:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223761#M76243</guid>
      <dc:creator />
      <dc:date>2010-12-15T06:02:54Z</dc:date>
    </item>
    <item>
      <title>many questions about straight table</title>
      <link>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223762#M76244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Sum(If(Sales &amp;gt; 50 and amd Sales &amp;lt;100,Sales))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 06:38:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223762#M76244</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2010-12-15T06:38:44Z</dc:date>
    </item>
    <item>
      <title>many questions about straight table</title>
      <link>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223763#M76245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;STRONG&gt;Deepak Kurup&lt;/STRONG&gt; ,&lt;/P&gt;&lt;P&gt;It does not work..&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/6724.1.JPG"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/6724.1.JPG" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;I want to filter two Salesmen's sum(Sales) . But NOT all Salesmen's sales summary which from 50 to 100.&lt;/P&gt;&lt;P&gt;The result should be 2 rows.&lt;/P&gt;&lt;P&gt;Help me. thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 07:40:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223763#M76245</guid>
      <dc:creator />
      <dc:date>2010-12-15T07:40:37Z</dc:date>
    </item>
    <item>
      <title>many questions about straight table</title>
      <link>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223764#M76246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can use the below method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(aggr(sum([Sales Amount]),Customer) &amp;gt;= 100000 and aggr(sum([Sales Amount]),Customer) &amp;lt;= 600000 ,[Sales Amount]))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to aggregate the Sales value based on the dimension.&lt;/P&gt;&lt;P&gt;for eg in you staright table if you have 2 dimesnion lets say Region, Customer&lt;/P&gt;&lt;P&gt;then we need to check the condition in below mehthod&lt;/P&gt;&lt;P&gt;aggr(sum([Sales Amount]),Customer,Region) &amp;gt;= 100000 and aggr(sum([Sales Amount]),Customer,Region) &amp;gt;= 200000 then say sum(Sales Amount)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope you got a clear picture on the issue. Let me know if you have any queires.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 08:02:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223764#M76246</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2010-12-15T08:02:08Z</dc:date>
    </item>
    <item>
      <title>many questions about straight table</title>
      <link>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223765#M76247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right now it's summing up all the "Sales" rows that are between 50 and 100.. so if Joan Callins has 10 sales that are between 50 and 100 these are summed up to a total.&lt;/P&gt;&lt;P&gt;If you only want the totals between 50 and 100 you can just flip the expression around to look at the totals instead of the individual rows:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;If(Sum(Sales) &amp;gt; 50 and Sum(Sales)&amp;lt;100, Sum(Sales))&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 08:23:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223765#M76247</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2010-12-15T08:23:54Z</dc:date>
    </item>
    <item>
      <title>many questions about straight table</title>
      <link>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223766#M76248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Deepak Kurup wrote:&lt;BR /&gt;if(aggr(sum([Sales Amount]),Customer) &amp;gt;= 100000 and aggr(sum([Sales Amount]),Customer) &amp;lt;= 600000 ,[Sales Amount]))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;You need to aggregate the Sales value based on the dimension.&lt;BR /&gt;for eg in you staright table if you have 2 dimesnion lets say Region, Customer&lt;BR /&gt;then we need to check the condition in below mehthod&lt;BR /&gt;aggr(sum([Sales Amount]),Customer,Region) &amp;gt;= 100000 and aggr(sum([Sales Amount]),Customer,Region) &amp;gt;= 200000 then say sum(Sales Amount)&lt;BR /&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/14782.1.JPG"&gt;&lt;IMG alt="" border="0" src="http://community.qlik.com/resized-image.ashx/__size/550x0/__key/CommunityServer.Discussions.Components.Files/11/14782.1.JPG" /&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;I use aggr function as you mentioned.&lt;/P&gt;&lt;P&gt;First table is original table. There are 9 rows in this table.&lt;/P&gt;&lt;P&gt;And I want to get the Salesman whose sales summary is between 50,000 and 100,000. I write a expression in &lt;A href="http://community.qlik.com/forums/Chart_Properties_Dimensions.htm#Calculated_dimensions" style="BACKGROUND-COLOR:transparent;"&gt;calculated dimensions&lt;/A&gt;: =if(aggr(sum(Sales),Salesman)&amp;lt;100000 and aggr(sum(Sales),Salesman)&amp;gt;50000,Salesman).&lt;/P&gt;&lt;P&gt;It works! I get Joan Callins and Ingrid Hengrix 's rows. But there are 3 rows. What is the 1st row which named as "-"?&lt;/P&gt;&lt;P&gt;could you explaine for me, please?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 09:26:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223766#M76248</guid>
      <dc:creator />
      <dc:date>2010-12-15T09:26:41Z</dc:date>
    </item>
    <item>
      <title>many questions about straight table</title>
      <link>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223767#M76249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Since You have mentioned the caluculation in Dimension, there will be nulll values for the condition which doesnt satisy the mention condition.&lt;/P&gt;&lt;P&gt;Either you can suppress the null values in the dimension level or&lt;/P&gt;&lt;P&gt;Add the same expression in Expression tab.&lt;/P&gt;&lt;P&gt;Best method is to write it in expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 09:34:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223767#M76249</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2010-12-15T09:34:01Z</dc:date>
    </item>
    <item>
      <title>many questions about straight table</title>
      <link>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223768#M76250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I have understand there will be nulll values when I use caluculation dimension and I can suppress the null values in the dimension level.&lt;/P&gt;&lt;P&gt;But how can I Add the same expression in Expression tab? I have tried , but failed. Can you give me an example?&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 10:11:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223768#M76250</guid>
      <dc:creator />
      <dc:date>2010-12-15T10:11:25Z</dc:date>
    </item>
    <item>
      <title>many questions about straight table</title>
      <link>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223769#M76251</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 this expression&lt;/P&gt;&lt;P&gt;if(aggr(sum(Sales),Salesman)&amp;lt;100000 and aggr(sum(Sales),Salesman)&amp;gt;50000,sum(Sales)).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Dec 2010 12:00:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/many-questions-about-straight-table/m-p/223769#M76251</guid>
      <dc:creator>deepakk</dc:creator>
      <dc:date>2010-12-15T12:00:19Z</dc:date>
    </item>
  </channel>
</rss>

