<?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: Cumulative count with status in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/4764005#M182474</link>
    <description>&lt;P&gt;Approved Connectors Cumulative Count :=&lt;BR /&gt;VAR CurrentQuarterEnd =&lt;BR /&gt;MAX('DateTable'[QuarterEnd])&lt;/P&gt;&lt;P&gt;VAR QuartersToInclude =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;VALUES('DateTable'[QuarterEnd]),&lt;BR /&gt;'DateTable'[QuarterEnd] &amp;lt;= CurrentQuarterEnd &amp;amp;&amp;amp;&lt;BR /&gt;'DateTable'[QuarterEnd] &amp;gt;= EDATE(CurrentQuarterEnd, -12)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;VAR StatusValues =&lt;BR /&gt;VALUES('ConnectorTable'[ApprovalStatus])&lt;/P&gt;&lt;P&gt;RETURN&lt;BR /&gt;SUMX(&lt;BR /&gt;QuartersToInclude,&lt;BR /&gt;VAR ThisQuarterEnd = [QuarterEnd]&lt;BR /&gt;VAR Cumulative =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('ConnectorTable'[ConnectorID]),&lt;BR /&gt;FILTER(&lt;BR /&gt;ALL('DateTable'),&lt;BR /&gt;'DateTable'[QuarterEnd] &amp;lt;= ThisQuarterEnd &amp;amp;&amp;amp;&lt;BR /&gt;'DateTable'[QuarterEnd] IN QuartersToInclude&lt;BR /&gt;),&lt;BR /&gt;FILTER(&lt;BR /&gt;'ConnectorTable',&lt;BR /&gt;'ConnectorTable'[ApprovalStatus] IN StatusValues &amp;amp;&amp;amp;&lt;BR /&gt;NOT(ISBLANK('ConnectorTable'[ApprovalDate]))&lt;/P&gt;&lt;P&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN Cumulative&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;mudei!!&lt;/P&gt;</description>
    <pubDate>Tue, 15 Jul 2025 16:32:38 GMT</pubDate>
    <dc:creator>EricVieira</dc:creator>
    <dc:date>2025-07-15T16:32:38Z</dc:date>
    <item>
      <title>Cumulative count with status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/3184537#M115241</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I am new here but I have been a user of the forums for long time. Hats off to all the lovely people out there who is helping others with the answers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here my question: I have requirement with cumulative count of approved connectors by different approval status and by quarter which should show only last 4 quarters inlcuding the present quarter if there is no data for any quarter it has to take value of previous quarter and present that.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I have connectors table like below&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;connectorid&lt;/TD&gt;&lt;TD&gt;createddate&lt;/TD&gt;&lt;TD&gt;approvaldate&lt;/TD&gt;&lt;TD&gt;approvalstatus&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;30/09/2016&lt;/TD&gt;&lt;TD&gt;20/06/2022&lt;/TD&gt;&lt;TD&gt;niche&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;18/7/2017&lt;/TD&gt;&lt;TD&gt;10/07/2022&lt;/TD&gt;&lt;TD&gt;standard&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;10/10/2016&lt;/TD&gt;&lt;TD&gt;10/07/2022&lt;/TD&gt;&lt;TD&gt;standard&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;10/03/2018&lt;/TD&gt;&lt;TD&gt;28/08/2022&lt;/TD&gt;&lt;TD&gt;standard&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;10/10/2016&lt;/TD&gt;&lt;TD&gt;30/10/2022&lt;/TD&gt;&lt;TD&gt;standard&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;10/03/2018&lt;/TD&gt;&lt;TD&gt;01/02/2023&lt;/TD&gt;&lt;TD&gt;niche&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;21/05/2019&lt;/TD&gt;&lt;TD&gt;10/03/2023&lt;/TD&gt;&lt;TD&gt;standard&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Expected result is&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Quarter&lt;/TD&gt;&lt;TD&gt;Status&lt;/TD&gt;&lt;TD&gt;Totals for Status&lt;/TD&gt;&lt;TD&gt;Cumulative for quarters&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Q3-2022&lt;/TD&gt;&lt;TD&gt;niche&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Q3-2022&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;standard&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Q4-2022&lt;/TD&gt;&lt;TD&gt;niche&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Q4-2022&lt;/TD&gt;&lt;TD&gt;standard&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Q1-2023&lt;/TD&gt;&lt;TD&gt;niche&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Q1-2023&lt;/TD&gt;&lt;TD&gt;standard&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Q2-2023&lt;/TD&gt;&lt;TD&gt;niche&lt;/TD&gt;&lt;TD&gt;no data - copy from previous quarter&lt;/TD&gt;&lt;TD&gt;no data - copy from previous quarter&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Q2-2023&lt;/TD&gt;&lt;TD&gt;standard&lt;/TD&gt;&lt;TD&gt;no data - copy from previous quarter&lt;/TD&gt;&lt;TD&gt;no data - copy from previous quarter&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If i get the data like this above then my Line and stacked column chart will give&amp;nbsp;&lt;/P&gt;&lt;P&gt;Q3-2022 - column bar with 4 with a division of 1 and 3 niche and standard&lt;/P&gt;&lt;P&gt;Q4-2022 -&amp;nbsp;column bar with 5 with a division of 1 and 4 niche and standard&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have done the measure for total status = COUNT(Connectors[Status])&lt;/P&gt;&lt;P&gt;Total Cumulative Connectors = CALCULATE(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Connectors[total status],&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; FILTER(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;ALL(Connectors[approvaldate]),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Connectors[approvaldate]&amp;lt;= MAX(Connectors[approvaldate])&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;)&lt;BR /&gt;using the above 2 measures, its giving same for total status and Total Cumulative Connectors.&lt;BR /&gt;also it doesn't give me like the table which I am expecting above. it gives&lt;/P&gt;&lt;P&gt;Quarter &amp;nbsp; &amp;nbsp;Status &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Total status &amp;nbsp;&amp;nbsp;Total Cumulative Connectors&amp;nbsp;&lt;/P&gt;&lt;P&gt;Q3-2022 &amp;nbsp; niche &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1&lt;/P&gt;&lt;P&gt;Q3-2022 &amp;nbsp; standard &amp;nbsp; &amp;nbsp; 3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 3&lt;/P&gt;&lt;P&gt;Q4-2022 &amp;nbsp; standard &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;Q1-2023 &amp;nbsp; niche &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;Q1-2023 &amp;nbsp; standard &amp;nbsp; &amp;nbsp; &amp;nbsp;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;/P&gt;&lt;P&gt;Q2-2023 &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sorry about the long post, it will be great, if anyone can help me getting the desired result. These are all made up numbers, as I can't share the data because of confidentiality. &amp;nbsp;Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 16:17:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/3184537#M115241</guid>
      <dc:creator>PowerbiLearnuk</dc:creator>
      <dc:date>2023-04-12T16:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative count with status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/3184807#M115261</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hey buddy, I have a big question with a big answer. Jokes aside, here it is.&lt;/SPAN&gt;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;To create a DAX measure that calculates a cumulative count of approved connectors by different approval status and by quarter, and shows only the last 4 quarters, including the current quarter, while taking the value of the previous quarter if there is no data for any quarter, you can use the following DAX formula:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Approved Connectors Cumulative Count =&lt;BR /&gt;VAR QuarterEndDate =&lt;BR /&gt;IF(&lt;BR /&gt;NOT(ISFILTERED('DateTable'[Quarter])),&lt;BR /&gt;MAX('DateTable'[Date]),&lt;BR /&gt;MAX('DateTable'[QuarterEnd])&lt;BR /&gt;)&lt;BR /&gt;VAR QuartersToInclude = CALCULATETABLE(&lt;BR /&gt;VALUES('DateTable'[Quarter]),&lt;BR /&gt;'DateTable'[QuarterEnd] &amp;lt;= QuarterEndDate,&lt;BR /&gt;'DateTable'[QuarterEnd] &amp;gt;= QuarterEndDate - 364&lt;BR /&gt;)&lt;BR /&gt;VAR StatusValues = VALUES('ConnectorTable'[ApprovalStatus])&lt;BR /&gt;RETURN&lt;BR /&gt;SUMX(&lt;BR /&gt;QuartersToInclude,&lt;BR /&gt;VAR QuarterEndDate = 'DateTable'[QuarterEnd]&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;ISBLANK(&lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('ConnectorTable'[ConnectorID]),&lt;BR /&gt;FILTER(&lt;BR /&gt;'ConnectorTable',&lt;BR /&gt;'ConnectorTable'[ApprovalStatus] IN StatusValues&lt;BR /&gt;&amp;amp;&amp;amp; 'ConnectorTable'[ApprovalDate] &amp;lt;= QuarterEndDate&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;),&lt;BR /&gt;IF(&lt;BR /&gt;QuarterEndDate = MIN('DateTable'[QuarterEnd]),&lt;BR /&gt;0,&lt;BR /&gt;[Approved Connectors Cumulative Count]&lt;BR /&gt;),&lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('ConnectorTable'[ConnectorID]),&lt;BR /&gt;FILTER(&lt;BR /&gt;'ConnectorTable',&lt;BR /&gt;'ConnectorTable'[ApprovalStatus] IN StatusValues&lt;BR /&gt;&amp;amp;&amp;amp; 'ConnectorTable'[ApprovalDate] &amp;lt;= QuarterEndDate&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 18:54:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/3184807#M115261</guid>
      <dc:creator>EricVieira</dc:creator>
      <dc:date>2023-04-12T18:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative count with status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/3184980#M115277</link>
      <description>&lt;P&gt;Hi Eric,&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt; thanks for the long answer. I have tried this, where the line is&amp;nbsp;&lt;SPAN&gt;VAR QuarterEndDate = 'DateTable'[QuarterEnd] its showing the error and it says 'DateTable[QuarterEnd] does not exist, so, I have changed it to&amp;nbsp;VAR QuarterEndDate = MAX( 'DateTable'[QuarterEnd]) and its stopped showing the error. The result is giving all the statuses for every quarter which is good. however the cumulative is not working its giving the values from that specific quarter only, its not adding the values from the previous quarter when the numbers are there and when numbers are not there as well. so, apart from cumulative other things are working. Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2023 22:06:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/3184980#M115277</guid>
      <dc:creator>PowerbiLearnuk</dc:creator>
      <dc:date>2023-04-12T22:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative count with status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/3187835#M115491</link>
      <description>&lt;P&gt;Hello all, any help here is very much appreciated. Thank you very much.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2023 07:02:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/3187835#M115491</guid>
      <dc:creator>PowerbiLearnuk</dc:creator>
      <dc:date>2023-04-14T07:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative count with status</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/4764005#M182474</link>
      <description>&lt;P&gt;Approved Connectors Cumulative Count :=&lt;BR /&gt;VAR CurrentQuarterEnd =&lt;BR /&gt;MAX('DateTable'[QuarterEnd])&lt;/P&gt;&lt;P&gt;VAR QuartersToInclude =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;VALUES('DateTable'[QuarterEnd]),&lt;BR /&gt;'DateTable'[QuarterEnd] &amp;lt;= CurrentQuarterEnd &amp;amp;&amp;amp;&lt;BR /&gt;'DateTable'[QuarterEnd] &amp;gt;= EDATE(CurrentQuarterEnd, -12)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;VAR StatusValues =&lt;BR /&gt;VALUES('ConnectorTable'[ApprovalStatus])&lt;/P&gt;&lt;P&gt;RETURN&lt;BR /&gt;SUMX(&lt;BR /&gt;QuartersToInclude,&lt;BR /&gt;VAR ThisQuarterEnd = [QuarterEnd]&lt;BR /&gt;VAR Cumulative =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;DISTINCTCOUNT('ConnectorTable'[ConnectorID]),&lt;BR /&gt;FILTER(&lt;BR /&gt;ALL('DateTable'),&lt;BR /&gt;'DateTable'[QuarterEnd] &amp;lt;= ThisQuarterEnd &amp;amp;&amp;amp;&lt;BR /&gt;'DateTable'[QuarterEnd] IN QuartersToInclude&lt;BR /&gt;),&lt;BR /&gt;FILTER(&lt;BR /&gt;'ConnectorTable',&lt;BR /&gt;'ConnectorTable'[ApprovalStatus] IN StatusValues &amp;amp;&amp;amp;&lt;BR /&gt;NOT(ISBLANK('ConnectorTable'[ApprovalDate]))&lt;/P&gt;&lt;P&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN Cumulative&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;mudei!!&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 16:32:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-count-with-status/m-p/4764005#M182474</guid>
      <dc:creator>EricVieira</dc:creator>
      <dc:date>2025-07-15T16:32:38Z</dc:date>
    </item>
  </channel>
</rss>

