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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi all.
So I need to calculate the Month-To-Date cumulative total of Change something like this:
But when I use the Month-To-Date Quick Measure of Power BI, seems like it's not working. But if I use the Year-To-Date Quick Measure, it's working. What I need is the Month-To-Date though. 😞 Also, I'm getting an error: "Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column."
Here's the screenshot of my PBI table and the formula:
Change YTD =
IF(
ISFILTERED(notifications[notificationdatetime]),
ERROR("Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column."),
TOTALYTD(
SUM(breaches[Change]),
notifications[notificationdatetime].[Date]
)
)
Change MTD =
IF(
ISFILTERED(notifications[notificationdatetime]),
ERROR("Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column."),
TOTALMTD(
SUM(breaches[Change]),
notifications[notificationdatetime].[Date]
)
)THANK YOU!!!!
Solved! Go to Solution.
Hi @harakuruku,
1.The TOTALMTD evaluates the value of the expression for the month to date, in the current context.
From screenshot of my PBI table you provide, there is only one piece of data per month without any specific date, then the function ToTALMTD will calculate the data of the whole current month, so the result of measure Change MTD is also correct.
2. If you want to calculate the cumulative total of Change but not the Month -To -Date, you could create the measure below.
MTDChange =
CALCULATE (
SUM ( breaches[change] ),
FILTER (
ALL ( breaches ),
'breaches'[RETALERS] <= MAX ( 'breaches'[RETALERS] )
)
)You could refer to the picture of the result:
If it is not your desired result, please show your desired output.
Hope it can help you !
Best Regards,
Cherry
Hi @harakuruku,
1.The TOTALMTD evaluates the value of the expression for the month to date, in the current context.
From screenshot of my PBI table you provide, there is only one piece of data per month without any specific date, then the function ToTALMTD will calculate the data of the whole current month, so the result of measure Change MTD is also correct.
2. If you want to calculate the cumulative total of Change but not the Month -To -Date, you could create the measure below.
MTDChange =
CALCULATE (
SUM ( breaches[change] ),
FILTER (
ALL ( breaches ),
'breaches'[RETALERS] <= MAX ( 'breaches'[RETALERS] )
)
)You could refer to the picture of the result:
If it is not your desired result, please show your desired output.
Hope it can help you !
Best Regards,
Cherry
Anyone? 😞
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 46 | |
| 42 | |
| 23 | |
| 18 |
| User | Count |
|---|---|
| 193 | |
| 123 | |
| 99 | |
| 67 | |
| 49 |