<?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 Spend measure returning incorrect results in Spend Range measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3207218#M116840</link>
    <description>&lt;P&gt;Hello shanti,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Okay, well I should've seen this sooner but your measure is showing "&lt;SPAN&gt;CumulativeSpend&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;0.1&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Top 80%" in the measure when it should be&amp;nbsp;"&lt;SPAN&gt;CumulativeSpend&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;0.8&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Top 80%" presumably. This&amp;nbsp;&lt;EM&gt;might&lt;/EM&gt; just be a typo? &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;----------------------------------&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Apr 2023 12:45:25 GMT</pubDate>
    <dc:creator>Wilson_</dc:creator>
    <dc:date>2023-04-26T12:45:25Z</dc:date>
    <item>
      <title>Cumulative Spend measure returning incorrect results in Spend Range measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3203093#M116531</link>
      <description>&lt;P&gt;&lt;SPAN&gt;&lt;A title="Sample report" href="https://we.tl/t-khEBaviEGf" target="_blank" rel="noopener"&gt;Link to .pbix sample data file&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I have a table in Power BI called 'SC data all' with columns 'Supplier Name' and 'Spend (EUR)'. I created a Cumulative Spend measure using the following formula:&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;Cumulative Spend = &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;VAR TotalSpend = CALCULATE(SUM('SC data all'[Spend (EUR)]),ALLSELECTED('SC data all'))&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;VAR CurrentSpend = SUM('SC data all'[Spend (EUR)])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;VAR SummarizedTable =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;SUMMARIZE(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; ALLSELECTED('SC data all'),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; 'SC data all'[Supplier Name],&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; "Spend",SUM('SC data all'[Spend (EUR)])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;VAR CumulativeSum =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;SUMX(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; FILTER(SummarizedTable,[Spend] &amp;gt;= CurrentSpend),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; [Spend]&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;RETURN&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;DIVIDE(CumulativeSum,TotalSpend)&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P class="lia-indent-padding-left-30px"&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;This formula is working fine, no issues here.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;But now I would like tot add a range like:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;Cumulative Spend &amp;lt;0.8 "Top 80%"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;Cumulative Spend 0.8&amp;lt;&amp;gt;0.95 "80 to 95%"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;Cumulative Spend &amp;gt;0.95 "Bottom 5%"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I use the following formula:&lt;/P&gt;&lt;DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;Vendor Pareto = &lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;VAR TotalSpend = CALCULATE(SUM('SC data all'[Spend (EUR)]),ALLSELECTED('SC data all'))&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;VAR CurrentSpend = SUM('SC data all'[Spend (EUR)])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;VAR SummarizedTable =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;SUMMARIZE(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; ALLSELECTED('SC data all'),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; 'SC data all'[Supplier Name],&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; "Spend",SUM('SC data all'[Spend (EUR)])&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;VAR CumulativeSum =&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;SUMX(&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; FILTER(SummarizedTable,[Spend] &amp;gt;= CurrentSpend),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; [Spend]&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;)&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;RETURN&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; SWITCH(TRUE(),&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DIVIDE(CumulativeSum, TotalSpend) &amp;gt; 0.95, "Bottom 5%",&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DIVIDE(CumulativeSum, TotalSpend) &amp;lt; 0.1, "Top 80%",&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; AND(DIVIDE(CumulativeSum, TotalSpend) &amp;gt;= 0.8, DIVIDE(CumulativeSum, TotalSpend) &amp;lt;= 0.95), "80 to 95%",&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; BLANK()&lt;/EM&gt;&lt;/DIV&gt;&lt;DIV class="lia-indent-padding-left-30px"&gt;&lt;EM&gt;&amp;nbsp; &amp;nbsp; )&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;And I can't get this formula to work. All my results are "Top 80%"&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;It should not be this hard because the measure Cumulative Spend is working just fine.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;Anybody knows what I am doing wrong? Much appreciated! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2023 08:25:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3203093#M116531</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-25T08:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative Spend measure returning incorrect results in Spend Range measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3203119#M116533</link>
      <description>&lt;P&gt;Hello shanti,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your Cumulative Spend and Vendor Pareto measures are not exactly the same. They are using different&amp;nbsp; CALCULATE parameters in the TotalSpend variable: Cumulative Spend is using "ALL('SC data all'[Supplier Name])", whereas Vendor Pareto is using "ALLSELECTED('SC data all')".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hard to know whether this is the only issue (or an issue at all), since you haven't shared any data.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;----------------------------------&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 14:21:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3203119#M116533</guid>
      <dc:creator>Wilson_</dc:creator>
      <dc:date>2023-04-24T14:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative Spend measure returning incorrect results in Spend Range measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3203151#M116536</link>
      <description>&lt;P&gt;Hello Wilson,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your quick response. You are right, I posted the wrong Cumulative Spend formula. Both are using the ALLSELECTED. I will edit my original post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;About sharing data, what would be the best way to share a sample of my data since it is a huge report/dataset. Create a new report with samples and post the .pbix file?&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 14:31:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3203151#M116536</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-24T14:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative Spend measure returning incorrect results in Spend Range measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3203373#M116561</link>
      <description>&lt;P&gt;Shanti,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, that would probably be the best way to share.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Apr 2023 16:34:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3203373#M116561</guid>
      <dc:creator>Wilson_</dc:creator>
      <dc:date>2023-04-24T16:34:36Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative Spend measure returning incorrect results in Spend Range measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3204571#M116664</link>
      <description>&lt;P&gt;I added a .pbix file&lt;BR /&gt;&lt;A title="Sample report" href="https://we.tl/t-khEBaviEGf" target="_blank" rel="noopener"&gt;Link to .pbix sample report&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2023 08:26:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3204571#M116664</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-25T08:26:47Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative Spend measure returning incorrect results in Spend Range measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3207218#M116840</link>
      <description>&lt;P&gt;Hello shanti,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Okay, well I should've seen this sooner but your measure is showing "&lt;SPAN&gt;CumulativeSpend&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;0.1&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Top 80%" in the measure when it should be&amp;nbsp;"&lt;SPAN&gt;CumulativeSpend&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt; &lt;/SPAN&gt;&lt;STRONG&gt;&lt;SPAN&gt;0.8&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;"Top 80%" presumably. This&amp;nbsp;&lt;EM&gt;might&lt;/EM&gt; just be a typo? &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;----------------------------------&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;If this post helps, please consider accepting it as the solution to help other members find it quickly. Also, don't forget to hit that thumbs up and subscribe! (Oh, uh, wrong platform?)&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 12:45:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3207218#M116840</guid>
      <dc:creator>Wilson_</dc:creator>
      <dc:date>2023-04-26T12:45:25Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative Spend measure returning incorrect results in Spend Range measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3208842#M116960</link>
      <description>&lt;P&gt;Hi Wilson,&lt;/P&gt;&lt;P&gt;That would have been an embarassing but a quick solution&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Unfortunately it doesn't seem to matter. I was juggling around with the numbers to see if it made any difference on the outcome and forgot to retun them to the original settings.&lt;/P&gt;&lt;P&gt;But the formula is still not giving me the outcome I expect.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 08:39:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3208842#M116960</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-27T08:39:06Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative Spend measure returning incorrect results in Spend Range measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3209005#M116976</link>
      <description>&lt;P&gt;I figured it out and it is equally embarrasing...&lt;/P&gt;&lt;P&gt;I added the formula as a column instead of a measure.&lt;/P&gt;&lt;P&gt;Now I made the changes is works like a charm.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your time &amp;amp; effort in trying to help me out!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 10:14:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3209005#M116976</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-27T10:14:37Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative Spend measure returning incorrect results in Spend Range measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3209225#M116995</link>
      <description>&lt;P&gt;haha I love it when my problem was just user error. Those are usually the easiest solutions! &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;They were measures in your sample pbix though so I definitely never would've caught that hah.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 12:16:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Cumulative-Spend-measure-returning-incorrect-results-in-Spend/m-p/3209225#M116995</guid>
      <dc:creator>Wilson_</dc:creator>
      <dc:date>2023-04-27T12:16:17Z</dc:date>
    </item>
  </channel>
</rss>

