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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Anonymous
Not applicable

TotalMTD not returning a value

Hello, 

I would like to show MTD Net Sales and copied a similar DAX formula that works for another page. I've adjusted to pull TotalMTD. There are no errors showing, however, the field is blank in the visual. Any help would be appreciated. 

 

TOTALMTD(SUM(Full_Data[opportunity.Net_New_Sales__c]),Full_Data[opportunity.CloseDate].[Date],FILTER(Full_Data,Full_Data[opportunity.IsClosed] = TRUE && Full_Data[opportunity.StageName]= "Closed Won"))
3 REPLIES 3
v-chuncz-msft
Community Support
Community Support

@Anonymous 

 

You may take a look at the links below.

Community Support Team _ Sam Zha
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Ashish_Mathur
Super User
Super User

Hi,

This isn't how it should be.  Create a Calendar Table and build a relationship from the Close Date column to the Date column of the Calendar Table.  In the Calendar Table, extrac the Month Name by using this calculated column formula: Month = FORMAR(Calendar[Date],"mmmm").  Build a slicer from the Month column of the Calendar Table and select any Month.  Try this measure

=CALCULATE(SUM(Full_Data[opportunity.Net_New_Sales__c]),Full_Data[opportunity.IsClosed] = TRUE,Full_Data[opportunity.StageName]= "Closed Won")

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
amitchandak
Super User
Super User

First of all, remove the filter clause and check if it working or not. Then put them one by one and check which filter is causing it.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors