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

TOTALYTD not working

I have read the similar posts but nothing worked with me.

 

I have a table with months (the end of each month date) and the sales target for each month.

I need to calculate the YTD target 

 

the table is  below, YTD target should be 52, but when I try 

TOTALYTD(sum(Target[Target]),Target[Month].[Date]) it gives me the year total = 105

 

targets.png

1 ACCEPTED SOLUTION

Hi @amaniramahi 

TOTALYTD does not work the way you expect it to. Check it out here

Try this instead:

Measure =
CALCULATE (
SUM ( Target[Target] ),
Target[Month] <= TODAY (),
Target[Month] >= DATE ( YEAR ( TODAY () ), 1, 1 )
)

View solution in original post

4 REPLIES 4
MauriceMecowe
Resolver II
Resolver II

Hi @amaniramahi 

 

You will need a continuous date selection for this to work.

 

Sincerely,

Maurice

Hi @amaniramahi 

TOTALYTD does not work the way you expect it to. Check it out here

Try this instead:

Measure =
CALCULATE (
SUM ( Target[Target] ),
Target[Month] <= TODAY (),
Target[Month] >= DATE ( YEAR ( TODAY () ), 1, 1 )
)

Thank @AlB ! that worked !

apology but I am new to power bi, I guess I will go through the whole website you provided!

 

Thanks again

@MauriceMecowe  thanks for the reply.

I already have created a datetable with continuous dates and created a relationship between the datetable and the dates in this table. didn't work either 😞

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.