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
icdns
Post Patron
Post Patron

Year To Date percentage

Hello, 

 

I would like to get the YTD% Percentage line on my line and clustered visual. I have no month filter selected. On my balance inquiry. I want my YTD% to be divided by the maximum available number of months instead of adding the 4 months. Capture.PNG

 

YTD% value must be: 
(97.44 + 97.58 + 100 + 99.56 = 394.58% ) / Available Maximum Month = 98.65%
1 ACCEPTED SOLUTION
Anonymous
Not applicable

you can calculate the % YTD with many measure types.

 

My solution is first measure the YTD and divide it to max dates. FYI, my calendar tables name is Dates.

 

YTD = TOTALYTD('your ytd table'[your YTD value],’Dates'[Date])

 

YTD% = CALCULATE(SUM('your ytd table'[your ytd column]) / MAX(Dates[Date])). 

 

and define the measure type to percantage.

 

I hope it helps.

View solution in original post

3 REPLIES 3
AllisonKennedy
Super User
Super User

@icdns
What is your current measure for YTD%?

I would divide by count of months, so that it will work for selected month as well as total column:
YTD% New = DIVIDE([YTD%], COUNTROWS(VALUES(DimDate[Month])))

Please @mention me in your reply if you want a response.

Copying DAX from this post? Click here for a hack to quickly replace it with your own table names

Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C

I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com

Anonymous
Not applicable

you can calculate the % YTD with many measure types.

 

My solution is first measure the YTD and divide it to max dates. FYI, my calendar tables name is Dates.

 

YTD = TOTALYTD('your ytd table'[your YTD value],’Dates'[Date])

 

YTD% = CALCULATE(SUM('your ytd table'[your ytd column]) / MAX(Dates[Date])). 

 

and define the measure type to percantage.

 

I hope it helps.

AntrikshSharma
Community Champion
Community Champion

Simply divide the YTD measure by MAX ( Dates[Month Number] )

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.