<?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: explain YOY (Year-over-Year) Growth % in the simplest way in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/explain-YOY-Year-over-Year-Growth-in-the-simplest-way/m-p/4837083#M184725</link>
    <description>&lt;P&gt;This will fail spectacularly when the values have different signs or when one or both of the values are zero.&lt;/P&gt;</description>
    <pubDate>Sat, 27 Sep 2025 23:23:05 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2025-09-27T23:23:05Z</dc:date>
    <item>
      <title>explain YOY (Year-over-Year) Growth % in the simplest way</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/explain-YOY-Year-over-Year-Growth-in-the-simplest-way/m-p/4834360#M184646</link>
      <description>&lt;P&gt;YOY growth tells you &lt;STRONG&gt;how much revenue has increased (or decreased) compared to the same period last year.&lt;/STRONG&gt;&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&lt;span class="lia-unicode-emoji" title=":input_numbers:"&gt;🔢&lt;/span&gt; Formula in plain words&lt;/H3&gt;&lt;P&gt;&lt;SPAN class=""&gt;YOY%=(This&amp;nbsp;Year&amp;nbsp;Revenue−Last&amp;nbsp;Year&amp;nbsp;Revenue)/ Last&amp;nbsp;Year&amp;nbsp;Revenue×100&lt;/SPAN&gt;&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&lt;span class="lia-unicode-emoji" title=":red_apple:"&gt;🍎&lt;/span&gt; Example (simple numbers)&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Revenue in &lt;STRONG&gt;2024&lt;/STRONG&gt; = ₹120&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Revenue in &lt;STRONG&gt;2023&lt;/STRONG&gt; = ₹100&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN class=""&gt;YOY%=120−100100×100=20%&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;So revenue grew &lt;STRONG&gt;20%&lt;/STRONG&gt; compared to last year.&lt;/P&gt;&lt;HR /&gt;&lt;H3&gt;&lt;span class="lia-unicode-emoji" title=":high_voltage:"&gt;⚡&lt;/span&gt; In Power BI (conceptually)&lt;/H3&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Create a measure for total revenue:&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;PRE&gt;Total Revenue = SUM(Sales[Revenue])&lt;/PRE&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Get &lt;STRONG&gt;last year’s revenue&lt;/STRONG&gt;:&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;PRE&gt;Last Year Revenue = CALCULATE([Total Revenue], SAMEPERIODLASTYEAR('Date'[Date]))&lt;/PRE&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Calculate YOY %:&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;PRE&gt;YOY % =
DIVIDE([Total Revenue] - [Last Year Revenue], [Last Year Revenue], 0)&lt;/PRE&gt;&lt;HR /&gt;&lt;H3&gt;&lt;span class="lia-unicode-emoji" title=":direct_hit:"&gt;🎯&lt;/span&gt; Layman Analogy&lt;/H3&gt;&lt;P&gt;Imagine you earned &lt;STRONG&gt;₹10,000 last year&lt;/STRONG&gt; and &lt;STRONG&gt;₹12,000 this year&lt;/STRONG&gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;First you ask: &lt;EM&gt;“How much more?”&lt;/EM&gt; → ₹2,000.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Then: &lt;EM&gt;“Compared to last year, what % is that?”&lt;/EM&gt; → ₹2,000 ÷ ₹10,000 = &lt;STRONG&gt;20% growth&lt;/STRONG&gt;.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;That’s exactly how businesses read YOY growth.&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 12:50:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/explain-YOY-Year-over-Year-Growth-in-the-simplest-way/m-p/4834360#M184646</guid>
      <dc:creator>Sania-F</dc:creator>
      <dc:date>2025-09-24T12:50:31Z</dc:date>
    </item>
    <item>
      <title>Re: explain YOY (Year-over-Year) Growth % in the simplest way</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/explain-YOY-Year-over-Year-Growth-in-the-simplest-way/m-p/4834459#M184650</link>
      <description>&lt;P&gt;&lt;SPAN&gt;This is a blog for asking for support, if you want to explain DAX you can consider other blogs&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 14:42:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/explain-YOY-Year-over-Year-Growth-in-the-simplest-way/m-p/4834459#M184650</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-09-24T14:42:22Z</dc:date>
    </item>
    <item>
      <title>Re: explain YOY (Year-over-Year) Growth % in the simplest way</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/explain-YOY-Year-over-Year-Growth-in-the-simplest-way/m-p/4837083#M184725</link>
      <description>&lt;P&gt;This will fail spectacularly when the values have different signs or when one or both of the values are zero.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Sep 2025 23:23:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/explain-YOY-Year-over-Year-Growth-in-the-simplest-way/m-p/4837083#M184725</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-09-27T23:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: explain YOY (Year-over-Year) Growth % in the simplest way</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/explain-YOY-Year-over-Year-Growth-in-the-simplest-way/m-p/4837228#M184739</link>
      <description>&lt;P&gt;Thank you for your input , will try to consider the cases that you gave and rewrite.&lt;/P&gt;</description>
      <pubDate>Sun, 28 Sep 2025 13:57:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/explain-YOY-Year-over-Year-Growth-in-the-simplest-way/m-p/4837228#M184739</guid>
      <dc:creator>Sania-F</dc:creator>
      <dc:date>2025-09-28T13:57:37Z</dc:date>
    </item>
  </channel>
</rss>

