<?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: Help with Cumulative KPI in Qlik Sense SaaS Using MonthYear Filter in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Help-with-Cumulative-KPI-in-Qlik-Sense-SaaS-Using-MonthYear/m-p/2529773#M107731</link>
    <description>&lt;P&gt;Hey! Thank you soo much for responding!! I tried this but it's not working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FYI I corrected my MonthYear data format from the excel file and my load script looks like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Qlik_Wizard_0-1757224703081.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/183473i7D4E79CB8E9BFEB6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Qlik_Wizard_0-1757224703081.png" alt="Qlik_Wizard_0-1757224703081.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Sep 2025 05:59:07 GMT</pubDate>
    <dc:creator>Qlik_Wizard</dc:creator>
    <dc:date>2025-09-07T05:59:07Z</dc:date>
    <item>
      <title>Help with Cumulative KPI in Qlik Sense SaaS Using MonthYear Filter</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Cumulative-KPI-in-Qlik-Sense-SaaS-Using-MonthYear/m-p/2529751#M107729</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm working on building a KPI in Qlik Sense SaaS, and my data source is an Excel file. I have a field called MonthYear, but when loading it, the values show up as numbers like 45627, 45717, etc.&lt;/P&gt;&lt;P&gt;So, in my data load script, I'm doing the following:&lt;/P&gt;&lt;DIV class=""&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;MonthStart(MonthYear) as MonthYearNum,&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Date(MonthStart(MonthYear), 'MMM YYYY') as MonthYear&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;P&gt;I'm using the formatted MonthYear field (MMM YYYY) in a filter pane. For the filter display, I’m using:&lt;/P&gt;&lt;DIV class=""&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Month(MonthYear)&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;P&gt;Now, I want to create a KPI that gives me the &lt;STRONG&gt;cumulative sum of values up to the selected month&lt;/STRONG&gt;. For example:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Jan = 100&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Feb = 200&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Mar = 300&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;If I select March, the KPI should show &lt;STRONG&gt;600 (100+200+300)&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;I'm using the following expression:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;Sum({&amp;lt;Metric = {'Non-compliant'}, MonthYearNum = {"&amp;lt;=$(=Max(MonthYearNum))"}&amp;gt;} Value)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;However, this only gives me the value for the selected month, not the cumulative sum up to the selected month.&lt;/P&gt;&lt;P&gt;Could someone please help me understand what I’m doing wrong or suggest a better approach?&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Sat, 06 Sep 2025 07:04:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Cumulative-KPI-in-Qlik-Sense-SaaS-Using-MonthYear/m-p/2529751#M107729</guid>
      <dc:creator>Qlik_Wizard</dc:creator>
      <dc:date>2025-09-06T07:04:01Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Cumulative KPI in Qlik Sense SaaS Using MonthYear Filter</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Cumulative-KPI-in-Qlik-Sense-SaaS-Using-MonthYear/m-p/2529771#M107730</link>
      <description>&lt;P&gt;You will probably need to ignore any selection in the field&amp;nbsp;&lt;SPAN&gt;MonthYea&amp;nbsp;in order for this to work. Try this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Sum({&amp;lt;Metric = {'Non-compliant'}, MonthYearNum = {"&amp;lt;=$(=Max(MonthYearNum))"}&lt;STRONG&gt;, MonthYear&lt;/STRONG&gt;&amp;gt;} Value)&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2025 05:49:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Cumulative-KPI-in-Qlik-Sense-SaaS-Using-MonthYear/m-p/2529771#M107730</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2025-09-07T05:49:53Z</dc:date>
    </item>
    <item>
      <title>Re: Help with Cumulative KPI in Qlik Sense SaaS Using MonthYear Filter</title>
      <link>https://community.qlik.com/t5/App-Development/Help-with-Cumulative-KPI-in-Qlik-Sense-SaaS-Using-MonthYear/m-p/2529773#M107731</link>
      <description>&lt;P&gt;Hey! Thank you soo much for responding!! I tried this but it's not working.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FYI I corrected my MonthYear data format from the excel file and my load script looks like this&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Qlik_Wizard_0-1757224703081.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/183473i7D4E79CB8E9BFEB6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Qlik_Wizard_0-1757224703081.png" alt="Qlik_Wizard_0-1757224703081.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Sep 2025 05:59:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Help-with-Cumulative-KPI-in-Qlik-Sense-SaaS-Using-MonthYear/m-p/2529773#M107731</guid>
      <dc:creator>Qlik_Wizard</dc:creator>
      <dc:date>2025-09-07T05:59:07Z</dc:date>
    </item>
  </channel>
</rss>

