<?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 Average Cumulative With 1 Value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582877#M216485</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´m Looking for a formula that can calculate the avg total in QlikView.&lt;/P&gt;&lt;P&gt;I have a count of names and months I need to show the cumulative average by month.&lt;/P&gt;&lt;P&gt;I put an excel file with what I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Dimensio is Month&lt;/P&gt;&lt;P&gt;My Expression is Count(Names)&lt;/P&gt;&lt;P&gt;I need the cumulative average by month&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 31 Mar 2014 18:31:16 GMT</pubDate>
    <dc:creator>pgalvezt</dc:creator>
    <dc:date>2014-03-31T18:31:16Z</dc:date>
    <item>
      <title>Average Cumulative With 1 Value</title>
      <link>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582877#M216485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´m Looking for a formula that can calculate the avg total in QlikView.&lt;/P&gt;&lt;P&gt;I have a count of names and months I need to show the cumulative average by month.&lt;/P&gt;&lt;P&gt;I put an excel file with what I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My Dimensio is Month&lt;/P&gt;&lt;P&gt;My Expression is Count(Names)&lt;/P&gt;&lt;P&gt;I need the cumulative average by month&lt;/P&gt;&lt;P&gt;Thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 18:31:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582877#M216485</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2014-03-31T18:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: Average Cumulative With 1 Value</title>
      <link>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582878#M216486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rangeavg(above(count(Names), 0, rowno()))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 18:36:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582878#M216486</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-03-31T18:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Average Cumulative With 1 Value</title>
      <link>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582879#M216487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check enclosed file...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 18:43:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582879#M216487</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-03-31T18:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: Average Cumulative With 1 Value</title>
      <link>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582880#M216488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jerem,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I obtain the total (Annual)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 18:48:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582880#M216488</guid>
      <dc:creator>pgalvezt</dc:creator>
      <dc:date>2014-03-31T18:48:26Z</dc:date>
    </item>
    <item>
      <title>Re: Average Cumulative With 1 Value</title>
      <link>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582881#M216489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IF(Dimensionality()=0,Sum(Sales)/Count(Distinct Month), RangeAvg(Above(SUM(Sales),0,RowNo())))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 18:56:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582881#M216489</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-03-31T18:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Average Cumulative With 1 Value</title>
      <link>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582882#M216490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean by total (Annual)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you mean the avg of all the months? You can get that with avg(total aggr(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;count(Names)&lt;/SPAN&gt;, Month)).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want it to appear in the total section of your column you are accumulating, you'll need to separate it out using dimensionality() like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if(dimensionality()=0, avg(total aggr(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;count(Names)&lt;/SPAN&gt;, Month)), &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12.727272033691406px;"&gt;rangeavg(above(count(Names), 0, rowno()))&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 31 Mar 2014 18:58:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Average-Cumulative-With-1-Value/m-p/582882#M216490</guid>
      <dc:creator>jerem1234</dc:creator>
      <dc:date>2014-03-31T18:58:48Z</dc:date>
    </item>
  </channel>
</rss>

