Forum Discussion
Total Value Column Measure
- 7 years ago
Hi Anonymous,
Please modify that measure like below.
Measure 2 = CALCULATE(SUM('Table1'[Amount]),ALLSELECTED('Table1'))Then it will show the sum of amount dynamically based on the filter.
Best Regards,
Cherry
Hi Anonymous,
Please try the measure below.
Measure 2 = CALCULATE(SUM('Table1'[Amount]),ALL('Table1'))
Here is an example.
If you still need help, please share some data sample and your desired output so that we could help further on it.
Best Regards,
Cherry
- v-piga-msft7 years agoResident Rockstar
Hi Anonymous,
Please modify that measure like below.
Measure 2 = CALCULATE(SUM('Table1'[Amount]),ALLSELECTED('Table1'))Then it will show the sum of amount dynamically based on the filter.
Best Regards,
Cherry
- Anonymous7 years agoNot applicableThank you v-piga-msft i couldnt be more happy with the response
- Anonymous4 years agoNot applicable
It's not working in my case, does it work differently if the total of the column I'm trying to have repeated on each row is the total of a measure?
In my case, I have the monthly percentage in each row, and would like to have the total year percentage repeated on the colum besides it (RAMA TEST).
Can anyone help me figure this out?Thanks!
- munchkin6663 years agoHelper II
v-piga-msft Thank you! it works in my case