Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hi,
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.
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 Budget/Actual Totals and Cumulative YTD Budget/Actual Totals.
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?
Many thanks for any assistance!
Solved! Go to Solution.
Hello @bigrods ,
I think it's possible, but It depends on the implementation.
There are several reliable approaches to display in the same matrix:
Power BI Report Builder, but you need to avoid having your month parameter filter all the data that your YTD calculation depends on.
' 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"Hello @bigrods ,
I think it's possible, but It depends on the implementation.
There are several reliable approaches to display in the same matrix:
Power BI Report Builder, but you need to avoid having your month parameter filter all the data that your YTD calculation depends on.
' 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"Hi,
I managed to get this working, thank you!
I removed any date-related filters on my matrix then had the "Annual" columns as the measures from my DataSet (imported from PowerBI).
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.
Thanks so much!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 1 | |
| 1 | |
| 1 |
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 4 | |
| 3 | |
| 2 |