Forum Discussion
Ashley1022
9 years agoFrequent Visitor
%GT and Rank
Hi, I have a requirement of computing for the %GT Value based on Securities in the Base table below and display the Top 3 values. However, when the ranking filter is applied, %GT Value recalcul...
- 9 years ago
Instead of auto calculation, create a measure instead.
GT Value measure = SUM(yourTable[Value])/CALCULATE(sum(yourTable[Value]),ALL(yourTable))
Eric_Zhang
9 years agoMicrosoft Employee
Instead of auto calculation, create a measure instead.
GT Value measure = SUM(yourTable[Value])/CALCULATE(sum(yourTable[Value]),ALL(yourTable))
Ashley1022
9 years agoFrequent Visitor
thank you.