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
Anonymous
Not applicable

YTD Calculation is not working properly

Hi,

I have created a YTD measure using the below formula. But when I put them in the grid. Its showing the same result for Splitter Amount as well as for the Amount YTD. Could you please help me here throwing some lights on what would have gone wrong?

 

Amount YTD = CALCULATE(('Sales'[Splitter Amount]), DATESYTD('Calendar'[CLDR_DT]))

5 REPLIES 5
v-danhe-msft
Employee
Employee

Hi @Anonymous,

Could you please tell me if your problem has been solved? If it is, could you please mark the helpful replies as Answered?

 

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-danhe-msft
Employee
Employee

Hi @Anonymous,

Could you please post me some sample data and your desired result?

 

Regards,

Daniel He

Community Support Team _ Daniel He
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

Hi,

 

I have created a YTD measure using the below formula. But when I put them in the grid. Its showing the same result for Splitter Amount as well as for the Amount YTD. Could you please help me here throwing some lights on what would have gone wrong?

 

Amount YTD = CALCULATE(('Sales'[Splitter Amount]), DATESYTD('Calendar'[CLDR_DT]))

Sean
Community Champion
Community Champion

This is what your basic YTD Measure should look like.

YTD Measure =
CALCULATE (
    [measure],
    DATESYTD ( 'Date'[Date] )
)

It seems you are referencing a naked column. So just add the appropriate aggregation function.

Amount YTD =
CALCULATE ( 
SUM ( 'Sales'[Splitter Amount] ),
DATESYTD ( 'Calendar'[CLDR_DT] )
)

Hope this helps! Smiley Happy

Sean
Community Champion
Community Champion

This is what your basic YTD Measure should look like.

YTD Measure =
CALCULATE (
    [measure],
    DATESYTD ( 'Date'[Date] )
)

It seems you are referencing a naked column. So just add the appropriate aggregation function.

Amount YTD =
CALCULATE ( 
SUM ( 'Sales'[Splitter Amount] ),
DATESYTD ( 'Calendar'[CLDR_DT] )
)

Hope this helps! Smiley Happy

 

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.

Top Solution Authors