Forum Discussion
vijayvizzu
Helper III
5 years agoValue along with Percentage value
Hi Is there a way to display both value and % value in a single card visual ?
Hi vijayvizzu .
Using a card visualization the only option would be to create a measure that woudl concatenate both of the values something similar to:
Value + percentage = SUM ( 'Table'[Value] ) & UNICHAR ( 10 ) -- unichar is used for line break & FORMAT ( DIVIDE ( SUM ( 'Table'[Value] ), CALCULATE ( SUM ( 'Table'[Value] ), ALL ( 'Table'[Cat] ) ) ), "##,0%" )
1 Reply
- MFelix
Super User
Hi vijayvizzu .
Using a card visualization the only option would be to create a measure that woudl concatenate both of the values something similar to:
Value + percentage = SUM ( 'Table'[Value] ) & UNICHAR ( 10 ) -- unichar is used for line break & FORMAT ( DIVIDE ( SUM ( 'Table'[Value] ), CALCULATE ( SUM ( 'Table'[Value] ), ALL ( 'Table'[Cat] ) ) ), "##,0%" )