Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
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.
Solved! Go to Solution.
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.
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
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.
User | Count |
---|---|
95 | |
92 | |
84 | |
83 | |
49 |
User | Count |
---|---|
150 | |
146 | |
112 | |
73 | |
56 |