Forum Discussion
aulona12
3 years agoFrequent Visitor
How to create calculated rows in the matrix?
Hello everyone, I am trying to add calculated row % in the matrix but i am having a hard time. Some help please? This is the original table : This is the desired result (the a...
- 3 years ago
Create a measure like the following and use it in your matrix instead:
Your Measure = DIVIDE( SUM(YourTable[YourColumn]), CALCULATE( SUM(YourTable[YourColumn]), ALLSELECTED(Yourtable[YourMonthColumn]) ) )Give it a thumbs up and accept as solution if you find this helpful!
YukiK
Impactful Individual
3 years agoCreate a measure like the following and use it in your matrix instead:
Your Measure =
DIVIDE(
SUM(YourTable[YourColumn]),
CALCULATE(
SUM(YourTable[YourColumn]),
ALLSELECTED(Yourtable[YourMonthColumn])
)
)
Give it a thumbs up and accept as solution if you find this helpful!
aulona12
3 years agoFrequent Visitor
This worked. Thank you for your suggestion.