Forum Discussion
Visual Help
Hi Have 2 graphs - the 1st is showing me the percentage of jobs over the year - so for example Dec equals 40.94%.
I then have a second graph that shows me these jobs broken down into 2 x categories - YES/NO.
In dec - these are showing as 33.13% and 7.81% - how can i change this so they are not the % of year, but for Dec so that they equal 100%?
4 Replies
- Anand24Super User
Hi LYeo87 ,
Can you please provide sample data and expected output?
You will need to use either of ALL, ALLSELECTED or ALLEXCEPT in your DAX but which one to use will be based on your data.
Give a thumbs up if this post helped you in any way and mark this post as solution if it solved your query !!!
- LYeo87Helper II
Top graph is used with a new column - IF statement. Buttom is purely totals
- AnonymousNot applicable
Hi LYeo87 ,
Could you please share some sample data and applied fields/measures on your two graph in order to provide you a suitable solution? If there is any measure applied on the graph, please also provide the related formula. Thank you.
In addition, I created a sample pbix file(see attachment) for you. Please check whether that is what you want.
Best Regards
- amitchandakSuper User
LYeo87 , You have try measures like
divide(sum(Table[total]),calculate(sum(Table[total]) , allexcept(Table, Table[month Year])))
divide(sum(Table[total]),calculate(sum(Table[total]) , filter(allselected(Table), Table[key#] =max(Table[month Year]))))
also refer
https://community.powerbi.com/t5/Desktop/Percentage-of-subtotal/td-p/95390