<?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 Sum of Rows in a Text Box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67780#M781068</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I get Sum of Rows value on a Expression/Field from Straight Table in a Text Box?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>qlikwiz123</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Sum of Rows in a Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67780#M781068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I get Sum of Rows value on a Expression/Field from Straight Table in a Text Box?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67780#M781068</guid>
      <dc:creator>qlikwiz123</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of Rows in a Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67781#M781069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It depends on what dimensions and expressions you are using in your straight table.&lt;/P&gt;&lt;P&gt;Can you provide dimensions and expressions here?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2018 20:48:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67781#M781069</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2018-03-21T20:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of Rows in a Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67782#M781070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QW,&lt;/P&gt;&lt;P&gt;You could use the aggr() function inside a sum() to get the same result as a sum of rows in a table.&amp;nbsp; The aggr() would calculate the expression for each combination of dimension values - just like straight table does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope that helps. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2018 20:50:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67782#M781070</guid>
      <dc:creator>john_obrien</dc:creator>
      <dc:date>2018-03-21T20:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of Rows in a Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67783#M781071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Expression is a simple Count(Field) but there are many dimensions in the Straight Table. Should I list all the dimensions under Aggr() ? I don't show all the Dimensions at once. What happens then.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2018 20:54:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67783#M781071</guid>
      <dc:creator>qlikwiz123</dc:creator>
      <dc:date>2018-03-21T20:54:43Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of Rows in a Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67784#M781072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUM(Aggr(Count(Field),Dim1,Dim2,Dim3))&lt;/P&gt;&lt;P&gt;Add all your dimensions inside aggr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2018 20:58:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67784#M781072</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2018-03-21T20:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of Rows in a Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67785#M781073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You selected your answer as correct??? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2018 21:18:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67785#M781073</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2018-03-21T21:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of Rows in a Text Box</title>
      <link>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67786#M781074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Strange &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2018 06:13:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Sum-of-Rows-in-a-Text-Box/m-p/67786#M781074</guid>
      <dc:creator>shiveshsingh</dc:creator>
      <dc:date>2018-03-22T06:13:55Z</dc:date>
    </item>
  </channel>
</rss>

