<?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: Paginated Budget Report - Monthly and Cumulative YTD Totals in same Matrix in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Budget-Report-Monthly-and-Cumulative-YTD-Totals-in/m-p/4902297#M42670</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="242687" data-lia-user-login="bigrods" class="lia-mention lia-mention-user"&gt;bigrods&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I think it's possible, but&amp;nbsp;It depends on the implementation.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;There are several reliable approaches to display in the same matrix:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Monthly totals (Actual/Budget for the selected month)&lt;/LI&gt;&lt;LI&gt;Cumulative YTD totals (Actual/Budget from the start of the year up to the selected month)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;Power BI Report Builder,&amp;nbsp;but you need to avoid having your month parameter filter &lt;EM&gt;all&lt;/EM&gt; the data that your YTD calculation depends on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;U&gt;Idea:&lt;/U&gt; Provide the report with all months of the year and apply the month filter only to display, then calculate YTD with &lt;STRONG&gt;RunningValue&lt;/STRONG&gt; in a Year group scope.&lt;BR /&gt;If you filter before calculation (e.g., at dataset level), &lt;STRONG&gt;RunningValue&lt;/STRONG&gt; will only sum remaining rows. Keep all year rows in the data region.&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;Setup :&lt;/DIV&gt;&lt;DIV&gt;&lt;UL&gt;&lt;LI&gt;Dataset: &lt;STRONG&gt;do not filter&lt;/STRONG&gt; by @pMonth (filter only by @pYear)&lt;/LI&gt;&lt;LI&gt;Matrix groups: YearGroup → MonthGroup&lt;/LI&gt;&lt;LI&gt;Display filter: on MonthGroup (show only =Parameters!pMonth.Value)&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="markup"&gt;' Monthly
=Fields!ActualAmount.Value
=Fields!BudgetAmount.Value

' YTD (cumulative up to displayed month)
=RunningValue(
    Fields!ActualAmount.Value,
    Sum,
    "YearGroup"
)
==RunningValue(
    Fields!BudgetAmount.Value,
    Sum,
    "YearGroup"&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;YTD ignores dataset filter (since not applied) and calculates correctly in the Year group even if you display only one month.&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;That's how I handled a similar case.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Have a nice day,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Vivien&lt;/DIV&gt;</description>
    <pubDate>Mon, 15 Dec 2025 14:10:46 GMT</pubDate>
    <dc:creator>vivien57</dc:creator>
    <dc:date>2025-12-15T14:10:46Z</dc:date>
    <item>
      <title>Paginated Budget Report - Monthly and Cumulative YTD Totals in same Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Budget-Report-Monthly-and-Cumulative-YTD-Totals-in/m-p/4902147#M42665</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I'm just asking to enquire if it's possible for Power BI Report Builder to create a financial Budget Report with one matrix that lists a mix of both monthly Actual/Budget data AND cumulative YTD Actual/Budget data.&lt;/P&gt;&lt;P&gt;I have had a brief play around with this, but the issue is, if I set either filters or parameters in the report then the Matrix will either filter ALL the data just by the specific month OR it will give me all the YTD data so I cannot acheive a mix of displaying Monthly&amp;nbsp; Budget/Actual Totals and Cumulative YTD Budget/Actual Totals.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wondered if anyone had come across this before and is it possible for some i.e. YTD fields to bypass the Monthly filters and display as a cumulative total?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks for any assistance!&lt;/P&gt;</description>
      <pubDate>Mon, 15 Dec 2025 11:37:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Budget-Report-Monthly-and-Cumulative-YTD-Totals-in/m-p/4902147#M42665</guid>
      <dc:creator>bigrods</dc:creator>
      <dc:date>2025-12-15T11:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Budget Report - Monthly and Cumulative YTD Totals in same Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Budget-Report-Monthly-and-Cumulative-YTD-Totals-in/m-p/4902297#M42670</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="242687" data-lia-user-login="bigrods" class="lia-mention lia-mention-user"&gt;bigrods&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I think it's possible, but&amp;nbsp;It depends on the implementation.&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;P&gt;There are several reliable approaches to display in the same matrix:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Monthly totals (Actual/Budget for the selected month)&lt;/LI&gt;&lt;LI&gt;Cumulative YTD totals (Actual/Budget from the start of the year up to the selected month)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;Power BI Report Builder,&amp;nbsp;but you need to avoid having your month parameter filter &lt;EM&gt;all&lt;/EM&gt; the data that your YTD calculation depends on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;U&gt;Idea:&lt;/U&gt; Provide the report with all months of the year and apply the month filter only to display, then calculate YTD with &lt;STRONG&gt;RunningValue&lt;/STRONG&gt; in a Year group scope.&lt;BR /&gt;If you filter before calculation (e.g., at dataset level), &lt;STRONG&gt;RunningValue&lt;/STRONG&gt; will only sum remaining rows. Keep all year rows in the data region.&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;Setup :&lt;/DIV&gt;&lt;DIV&gt;&lt;UL&gt;&lt;LI&gt;Dataset: &lt;STRONG&gt;do not filter&lt;/STRONG&gt; by @pMonth (filter only by @pYear)&lt;/LI&gt;&lt;LI&gt;Matrix groups: YearGroup → MonthGroup&lt;/LI&gt;&lt;LI&gt;Display filter: on MonthGroup (show only =Parameters!pMonth.Value)&lt;/LI&gt;&lt;/UL&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;LI-CODE lang="markup"&gt;' Monthly
=Fields!ActualAmount.Value
=Fields!BudgetAmount.Value

' YTD (cumulative up to displayed month)
=RunningValue(
    Fields!ActualAmount.Value,
    Sum,
    "YearGroup"
)
==RunningValue(
    Fields!BudgetAmount.Value,
    Sum,
    "YearGroup"&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;YTD ignores dataset filter (since not applied) and calculates correctly in the Year group even if you display only one month.&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;That's how I handled a similar case.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Have a nice day,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Vivien&lt;/DIV&gt;</description>
      <pubDate>Mon, 15 Dec 2025 14:10:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Budget-Report-Monthly-and-Cumulative-YTD-Totals-in/m-p/4902297#M42670</guid>
      <dc:creator>vivien57</dc:creator>
      <dc:date>2025-12-15T14:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Paginated Budget Report - Monthly and Cumulative YTD Totals in same Matrix</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Budget-Report-Monthly-and-Cumulative-YTD-Totals-in/m-p/4902373#M42673</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I managed to get this working, thank you!&amp;nbsp;&lt;/P&gt;&lt;P&gt;I removed any date-related filters on my matrix then had the "Annual" columns as the measures from my DataSet (imported from PowerBI).&lt;/P&gt;&lt;P&gt;For the "Monthly" columns, I created a report Parameter, based on each month in the reporting year then created the Monthly columns manually as Expressions, but referring to the Parameters date period.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks so much!&lt;/P&gt;</description>
      <pubDate>Mon, 15 Dec 2025 15:45:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Paginated-Budget-Report-Monthly-and-Cumulative-YTD-Totals-in/m-p/4902373#M42673</guid>
      <dc:creator>bigrods</dc:creator>
      <dc:date>2025-12-15T15:45:39Z</dc:date>
    </item>
  </channel>
</rss>

