Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
harakuruku
Helper I
Helper I

Month-to-Date Measure Not Working?

Hi all.

 

 

So I need to calculate the Month-To-Date cumulative total of Change something like this:
c1.png


 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

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:
c2.png

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

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!!!!

1 ACCEPTED SOLUTION
v-piga-msft
Resident Rockstar
Resident Rockstar

 

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:

 

Capture1.PNG

 

If it is not your desired result, please show your desired output.

 

Hope it can help you !

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-piga-msft
Resident Rockstar
Resident Rockstar

 

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:

 

Capture1.PNG

 

If it is not your desired result, please show your desired output.

 

Hope it can help you !

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

@v-piga-msft You're my savior. Thank you so much!! ♥

@v-piga-msft You're my savior. Thank you so much!! ♥

harakuruku
Helper I
Helper I

Anyone? 😞

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.