Forum Discussion
preve05
8 years agoFrequent Visitor
Filter for Card Visual does not work % of GT
Hi, I have a TreeMap showing %of GrandTotal and a Card visual that I am trying to update when a branch is clicked. It updates when I set the Field for Card to Sum of Quantity but does not when I furt...
- 8 years ago
You may add a measure instead.
Measure = DIVIDE ( SUM ( Table1[Column2] ), CALCULATE ( SUM ( Table1[Column2] ), ALL ( Table1 ) ) )
v-chuncz-msft
Community Support
8 years ago
You may add a measure instead.
Measure =
DIVIDE (
SUM ( Table1[Column2] ),
CALCULATE ( SUM ( Table1[Column2] ), ALL ( Table1 ) )
)
preve05
8 years agoFrequent Visitor
Created a new measure as suggested above for the Card visual and it worked. Thanks!