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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
sublog
Helper III
Helper III

Total Revenue MTD, but from 2 days ago - Not working

Total Revenue MTD Prior Day = TotalMTD( [Total Revenue], DATEADD(LASTDATE('Calendar'[Date]),-2,DAY))
 
My calendar table extends to the end of the current calendar month. I've tried all kind of variations such as lastdate, dateadd, etc and it only gives me the current MTD totals. 
I assume it's because my calendar table extends to the end of the month. Just need a way to get around it. Honestly spent over an hour trying various things and nothing I tries work. 
 
 
1 ACCEPTED SOLUTION

I think this works... Which you gave me the idea. 

 

Total Revenue MTD Prior Day =
TOTALMTD (
[Total Revenue],
DATESBETWEEN (
'Calendar'[Date],
STARTOFMONTH ( 'Calendar'[Date] ),
TODAY () - 2
)
)
 
 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

Instead of end date, try endofmonth. If does not work.  If possible please share a sample pbix file after removing sensitive information.

 

 

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.

My Recent Blog - https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601
Thanks

I think this works... Which you gave me the idea. 

 

Total Revenue MTD Prior Day =
TOTALMTD (
[Total Revenue],
DATESBETWEEN (
'Calendar'[Date],
STARTOFMONTH ( 'Calendar'[Date] ),
TODAY () - 2
)
)
 
 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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