<?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: MoM % Variance in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3072449#M106702</link>
    <description>&lt;P&gt;The results you got are what I'm after! But when I unput the DAX 2 different ways I get 2 different errors, please advise what I'm doing incorrectly:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Feb 2023 16:24:28 GMT</pubDate>
    <dc:creator>mclawler</dc:creator>
    <dc:date>2023-02-09T16:24:28Z</dc:date>
    <item>
      <title>MoM % Variance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3070514#M106539</link>
      <description>&lt;P&gt;Hi Everybody, first post, I am a rookie at this stuff and for the life of me can't seem to figure out the correct DAX for MoM % Variance.&amp;nbsp; I'm self-taught and done pretty well so far, but I must be missing something simple and making a rookie mistake on this one.&amp;nbsp; All I am trying to achieve, is to show how much the Balance went up(or down) from one month to the next.&amp;nbsp; I'm sure I am way over-thinking it, logic tells me I need to use the sum of Balance filtered by the Month(date) and divide that by the sum of balance for previous month.&amp;nbsp; Please advise, and thank you this forum has been by far my most valuable resource thus far.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I have more detailed tables as well, but for this specific visual I am literally only using this table I created for summary and simplicity&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 00:27:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3070514#M106539</guid>
      <dc:creator>mclawler</dc:creator>
      <dc:date>2023-02-09T00:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: MoM % Variance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3070758#M106564</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 02:55:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3070758#M106564</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2023-02-09T02:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: MoM % Variance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3070798#M106571</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="511963" data-lia-user-login="mclawler" class="lia-mention lia-mention-user"&gt;mclawler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can reger to the following measure&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;MTM% = var a=SUMX(FILTER(ALLSELECTED('Table'),EOMONTH('Table'[Snapshot month],0)=EOMONTH(MAX('Table'[Snapshot month]),1)),[Exposure Balance])
return DIVIDE(a-SUM('Table'[Exposure Balance]),SUM('Table'[Exposure Balance]))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards!&lt;/P&gt;
&lt;P&gt;Yolo Zhu&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;I&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/I&gt;, then please consider&amp;nbsp;&lt;I&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/I&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 03:25:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3070798#M106571</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-09T03:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: MoM % Variance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3072449#M106702</link>
      <description>&lt;P&gt;The results you got are what I'm after! But when I unput the DAX 2 different ways I get 2 different errors, please advise what I'm doing incorrectly:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Feb 2023 16:24:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3072449#M106702</guid>
      <dc:creator>mclawler</dc:creator>
      <dc:date>2023-02-09T16:24:28Z</dc:date>
    </item>
    <item>
      <title>Re: MoM % Variance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3072470#M106704</link>
      <description>&lt;P&gt;Your DAX did exactly as your chart shows, however I don't think it's giving me the results I'm looking for.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example -&lt;/P&gt;&lt;P&gt;from 2/1/2022 to 3/1/2022 I'm looking for a -50%&lt;/P&gt;&lt;P&gt;from 3/1/2022 to 4/1/2022 I'm looking for 39.6%&lt;/P&gt;&lt;P&gt;from 4/1/2022 to 5/1/2022 I'm looking for 0%&lt;/P&gt;&lt;P&gt;from 5/1/2022 to 6/1/2022 I'm looking for 497%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Current month divided by previous month for the increase/decrease %&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&amp;nbsp;&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>Thu, 09 Feb 2023 16:30:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3072470#M106704</guid>
      <dc:creator>mclawler</dc:creator>
      <dc:date>2023-02-09T16:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: MoM % Variance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3073197#M106754</link>
      <description>&lt;P&gt;Figured it out with the builtin Quick Measure suggestions, I thought since it was showing me an error it wasn't working, but the calculations appear to be correct regardless of the error.&amp;nbsp; Thanks everyone&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Exposure Balance MoM% = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ISFILTERED&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Exposure Balance Monthly'&lt;/SPAN&gt;&lt;SPAN&gt;[Snapshot Month]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ERROR&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;"Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column."&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;__PREV_MONTH&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Exposure Balance Monthly'&lt;/SPAN&gt;&lt;SPAN&gt;[Exposure Balance]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DATEADD&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Exposure Balance Monthly'&lt;/SPAN&gt;&lt;SPAN&gt;[Snapshot Month]&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;[Date]&lt;/SPAN&gt;&lt;SPAN&gt;, -&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;MONTH&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Exposure Balance Monthly'&lt;/SPAN&gt;&lt;SPAN&gt;[Exposure Balance]&lt;/SPAN&gt;&lt;SPAN&gt;) - &lt;/SPAN&gt;&lt;SPAN&gt;__PREV_MONTH&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;__PREV_MONTH&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 09 Feb 2023 21:43:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/3073197#M106754</guid>
      <dc:creator>mclawler</dc:creator>
      <dc:date>2023-02-09T21:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: MoM % Variance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/5213031#M188205</link>
      <description>&lt;P class=""&gt;The most common reason MoM % breaks for self-taught users: DATEADD needs a proper Date table marked as Date Table in the model. If you're using a date column directly from your fact table without a separate Date table, DATEADD returns BLANK.&lt;/P&gt;&lt;P class=""&gt;The clean pattern:&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;PRE&gt;MoM % Variance =&lt;BR /&gt;VAR _curr = [Total Sales]&lt;BR /&gt;VAR _prev = CALCULATE(&lt;BR /&gt;[Total Sales],&lt;BR /&gt;DATEADD('Date'[Date], -1, MONTH)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;ISBLANK(_prev),&lt;BR /&gt;BLANK(),&lt;BR /&gt;DIVIDE(_curr - _prev, ABS(_prev))&lt;BR /&gt;)&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P class=""&gt;Two things to check if still getting wrong results: (1) your Date table is marked as a Date Table (right-click table → Mark as date table), and (2) you're filtering by Month in the visual, not Day DATEADD with MONTH needs month-level granularity to work correctly.&lt;/P&gt;&lt;P class=""&gt;For anyone who needs MoM variance in a published report where Finance users can add or switch periods themselves without going back to Desktop, &lt;STRONG&gt;Flexa Tables&lt;/STRONG&gt; on AppSource handles MoM as a built-in button no DAX required&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jun 2026 03:55:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/5213031#M188205</guid>
      <dc:creator>PBIdashboards</dc:creator>
      <dc:date>2026-06-18T03:55:49Z</dc:date>
    </item>
    <item>
      <title>Re: MoM % Variance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/5220750#M188207</link>
      <description>&lt;P&gt;hi&amp;nbsp;&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="511963" data-lia-user-login="mclawler" class="lia-mention lia-mention-user"&gt;mclawler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a DAX practitioner, I have to share a crucial best practice: &lt;STRONG&gt;DAX time intelligence functions behave unpredictably if you do not have a dedicated Date Table. Even if you built a simple summary table for your balance data, I highly recommend creating a separate table just for your dates (a continuous calendar), marking it as a "Date Table" in Power BI, and linking its Date column to your summary table's Date column. This ensures your "Previous Month" calculations never skip a beat.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;That built-in Quick Measure you found is actually hardcoded to throw an error under certain conditions. Notice this part of the code:&lt;/P&gt;&lt;PRE&gt;&lt;STRONG&gt;IF(&lt;BR /&gt;&lt;STRONG&gt;ISFILTERED('Exposure Balance Monthly'[Snapshot Month]),&lt;BR /&gt;&lt;STRONG&gt;ERROR("Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column.")&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/PRE&gt;&lt;P&gt;Microsoft writes their Quick Measures defensively. It is literally programmed to break and show that text if you don't use it exactly with the built-in date hierarchy. It's clunky, hard to read, and not how you want to write DAX long-term.&lt;/P&gt;&lt;P&gt;Now, next looking at the two screenshots you provided, you are making a very common mistake: &lt;STRONG&gt;referencing the wrong table name.&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;First Error Screenshot: You copied SUM(Table[Exposure Balance]). Power BI is telling you "Cannot find table 'Table'" because your table is not actually named "Table".&lt;/STRONG&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Second Error Screenshot: You tried to fix it by writing SUM('Exposure Balance'[Exposure Balance]). Here, Power BI says "Cannot find table 'Exposure Balance'". That is because "Exposure Balance" is the name of your &lt;I&gt;column, not your table.&lt;/I&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Based on the Quick Measure code you posted earlier, your actual table name is &lt;STRONG&gt;'Exposure Balance Monthly'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Please try this DAX:&lt;/P&gt;&lt;PRE&gt;MoM % Variance = &lt;BR /&gt;VAR CurrentBalance = SUM ( 'Exposure Balance Monthly'[Exposure Balance] )&lt;BR /&gt;VAR PreviousBalance = &lt;BR /&gt;CALCULATE (&lt;BR /&gt;SUM ( 'Exposure Balance Monthly'[Exposure Balance] ),&lt;BR /&gt;PREVIOUSMONTH ( 'Exposure Balance Monthly'[Snapshot Month] )&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;DIVIDE (&lt;BR /&gt;CurrentBalance - PreviousBalance,&lt;BR /&gt;PreviousBalance&lt;BR /&gt;)&lt;/PRE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Fri, 19 Jun 2026 17:05:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/5220750#M188207</guid>
      <dc:creator>mizan2390</dc:creator>
      <dc:date>2026-06-19T17:05:52Z</dc:date>
    </item>
    <item>
      <title>Re: MoM % Variance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/5327925#M188351</link>
      <description>&lt;P&gt;Your logic is actually correct, the issue is more likely how the comparison is being done. Since your "Exposure Balance Monthly" table is a snapshot table (one row per month-end, not additive daily transactions) and probably isn't hooked up to a full marked Date table with contiguous dates, relying on functions like DATEADD or PREVIOUSMONTH here often returns blank because those need a real calendar table. Since your data already has one row per month, it's more reliable to compare explicit Snapshot Month values directly:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;MoM % Variance =&lt;/P&gt;&lt;P&gt;VAR CurBal = SUM('Exposure Balance Monthly'[Exposure Balance])&lt;/P&gt;&lt;P&gt;VAR CurMonth = MAX('Exposure Balance Monthly'[Snapshot Month])&lt;/P&gt;&lt;P&gt;VAR PrevMonth = EOMONTH(CurMonth, -2) + 1&lt;/P&gt;&lt;P&gt;VAR PrevBal =&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; CALCULATE(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; SUM('Exposure Balance Monthly'[Exposure Balance]),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ALL('Exposure Balance Monthly'),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'Exposure Balance Monthly'[Snapshot Month] = PrevMonth&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; )&lt;/P&gt;&lt;P&gt;RETURN&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; DIVIDE(CurBal - PrevBal, PrevBal)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;EOMONTH(CurMonth, -2) + 1 gets you the first day of the prior month regardless of which day-of-month your Snapshot Month values use. The ALL() clears the existing month filter from the visual so we can manually re-filter to exactly that one previous month. This avoids needing a full calendar/date table just to get a working MoM% for a monthly snapshot metric like this.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2026 13:57:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/MoM-Variance/m-p/5327925#M188351</guid>
      <dc:creator>Divyaraj_Rathod</dc:creator>
      <dc:date>2026-07-29T13:57:54Z</dc:date>
    </item>
  </channel>
</rss>

