Forum Discussion
Anonymous
6 years agoNot applicable
Show Percentages per month
Can someone assist me with a DAX / or the correct approach if I want to show the percentages per month in a line chart? The problem I am facing is that it divides the percentage within the whole...
- 6 years ago
Hi Anonymous ,
Selected the Stacked area chart and the use the following measure on your values:
Total total for Month-Year = SUM('Table'[Total]) / CALCULATE(SUM('Table'[Total]);ALL('Table'[Type]))If you want the measure to calculated based on a filter of type you can redo the measure to:
Total total for Month-Year selected = SUM('Table'[Total]) / CALCULATE(SUM('Table'[Total]);ALLSELECTED('Table'[Type]))Regards,
MFelix
MFelix
Super User
6 years agoHi Anonymous ,
Selected the Stacked area chart and the use the following measure on your values:
Total total for Month-Year =
SUM('Table'[Total]) / CALCULATE(SUM('Table'[Total]);ALL('Table'[Type]))
If you want the measure to calculated based on a filter of type you can redo the measure to:
Total total for Month-Year selected =
SUM('Table'[Total]) / CALCULATE(SUM('Table'[Total]);ALLSELECTED('Table'[Type]))
Regards,
MFelix
Anonymous
6 years agoNot applicable