Forum Discussion
mathician
6 years agoHelper II
Create a precentage donut view
So im trying to create a donut chart that shows the precentage of opened email. Like this(img). I want it to highlight just opening precentage. So in this case 20.88% The problem is my data...
- Anonymous6 years ago
Hi mathician ,
Create a visual as below, "email opened" as legend, count of "id person" as value. Then edit the Data colors under Format pane.
Best Regards,
Jay
MFelix
6 years agoSuper User
Hi mathician ,
If you place on the legend the E-mail opened column then you just need to change the colors of different parts:
If you want the card make a measure similar to this one:
Count of ID weighted by Count of Opened per Opened =
CALCULATE(COUNT('Table (2)'[ID]), 'Table (2)'[Opened] = 1) / COUNT('Table (2)'[ID])
Check PBIX file attach and also check my blogpost about this type of custom formatting.