Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hello everyone. I am a beginner in using Power BI. I would like to implement the following report with the same caracteristics. But the thing at the moment is that I can't find any functionality that allows me to subdivide the row subtotals into two in order to get one row for the monthly total and one row for the cumulative total. Can you please give me an idea to solve this challenge? Thanks in advance for your input.
Solved! Go to Solution.
Monthly Total = SUM(Data[YourValueColumn])
Cumulative Total = CALCULATE(SUM(Data[YourValueColumn]), FILTER(ALLSELECTED(Data[Date]), Data[Date] <= MAX(Data[Date])))
Adjust the formatting and coloring in your table to match the style of your original report. Use conditional formatting if needed to highlight specific values.
Test the slicers or filters to ensure that your totals update correctly based on user selections.
If this helped, a Kudos 👍 or Solution mark would be great!
Cheers,
Kedar Pande
www.linkedin.com/in/kedar-pande
Hi @RaymondKEYA ,
Power BI does not support splitting Total into two rows for presentation, this is by design. You can choose to take the @Kedar_Pande's approach and use two measures to calculate the two totals you need and put them into a matrix as fields for display, but note that this approach only allows you to have the two totals displayed as columns, not rows as in the diagram you gave:
It will add Total here:
Best Regards,
Dino Tao
Monthly Total = SUM(Data[YourValueColumn])
Cumulative Total = CALCULATE(SUM(Data[YourValueColumn]), FILTER(ALLSELECTED(Data[Date]), Data[Date] <= MAX(Data[Date])))
Adjust the formatting and coloring in your table to match the style of your original report. Use conditional formatting if needed to highlight specific values.
Test the slicers or filters to ensure that your totals update correctly based on user selections.
If this helped, a Kudos 👍 or Solution mark would be great!
Cheers,
Kedar Pande
www.linkedin.com/in/kedar-pande
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 84 | |
| 49 | |
| 38 | |
| 31 | |
| 30 |