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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
jackypatel
Helper I
Helper I

Need YTD Sum

As per Below table

 

MonthValueYTDLogic
Apr-23278.5278.5Apr-23
May-23181.9460.4Apr-23+May-23
Jun-23147.5607.9Apr-23+May-23+Jun-23

Continue till Mar-24 

 

And Same will start for Apr-24

 

Plz help to resolve this

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Hi @jackypatel  - You can use DAX to calculate the YTD values.This approach also calculates the YTD value but uses a filtering logic to include only months within the same fiscal year.

YTD Value =
CALCULATE(
SUM(Table[Value]),
DATESYTD(
Table[Month],
"03-31" // End of fiscal year (March 31)
)
)

 

I hope you have a calendar table created in your model. please replace the same and place the value field.

 

 

 

 

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

2 REPLIES 2
rajendraongole1
Super User
Super User

Hi @jackypatel  - You can use DAX to calculate the YTD values.This approach also calculates the YTD value but uses a filtering logic to include only months within the same fiscal year.

YTD Value =
CALCULATE(
SUM(Table[Value]),
DATESYTD(
Table[Month],
"03-31" // End of fiscal year (March 31)
)
)

 

I hope you have a calendar table created in your model. please replace the same and place the value field.

 

 

 

 

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Thank you

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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