Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Hi,
I'm aiming to maintain the Column Subtotal in a Matrix as YTD, while other columns represent individual months. It works perfectly without any month filters applied (the total is sum of all months, which is coincidently YTD values):
But applying a month filter alters the Total column to reflect only the selected month(s).
Can the Total column always reflect the sum of all months, unaffected by month filters?
Solved! Go to Solution.
Hi @Renna ,
Change your YTD Revenue dax as follow.
Hi @Renna ,
Can you share your sample pbix file.
As I think you have added wrong field to ALL function.
Thanks
It works! Thank you so much!
Hi @Renna ,
use INSCOPE function.
Dax query should be like follow.
Change the table and column names as your data model.
Amount = IF(INSCOPE(Calender[Month]) , CALCULATE(SUM('Sales'[SalesAmount])),CALCULATE(SUM('Sales'[SalesAmount]) , ALL(Calender[Month]))
Thanks
DISU.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 40 | |
| 30 | |
| 24 |