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
Pbi07
Helper V
Helper V

TOTALYTD Question - Different results

Having a question on the way TOTALYTD behaves. 

 

Trying to get a cumulative totals for the monthly total sales  and receipts from the below data

 

Pic1.JPG

I have a calendar table and relationship set and able to arrive at the cumulative totals using the TOTALYTD fn. 

 

calendar = CALENDARAUTO()

 

pic2.JPG

When i try using the similar method on a direct query data, my results gets distorted. 

The below YTD_Sales as of Jan resets to 300 instead of 400. 

YearMonthSales_TotalRecpt_TotalYTD_Sales
2017Oct100 100
2017Nov  100
2017Dec  100
2018Jan300 300
2018Feb600 900
     

 

What is causing this kind of difference? 

 

 

 
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Pbi07 , Did you got the answers, If not please share additional information.

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@Pbi07 , Did you got the answers, If not please share additional information.

@v-yuta-msft  @amitchandak 

 

Thanks @amitchandak for clarifying on the YTD function. I took the below approach to solve it.

 

M_Cumulative_Total =
VAR MaxDate=CALCULATE(MAX(Calendar[Date]), Invoice)
RETURN CALCULATE([Inv_total], FILTER(ALL(Calendar[Date]), Calendar[Date]<=MaxDate))
v-yuta-msft
Community Support
Community Support

@Pbi07 ,

 

Could you please share the sample data and give the measure you are using?

 

Regards,

Jimmy Tao

amitchandak
Super User
Super User

YTD will reset at the start of year. If you are looking for cumulative

try

Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(date,date[date] <=maxx(date,date[date])))

Cumm Sales = CALCULATE(SUM(Sales[Sales Amount]),filter(date,date[date] <=maxx(date,endofmonth(dateadd(date[date]),-1,month))))

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.