Forum Discussion
Circle Visual Total amount
Hi everyone
I have total 10362 values. Various companies have shares in these values. For example, company A have 10% of the total. Now i want to create one circle visual for every company withe the total amount and the shares of % to the total . How can i create it?
Thanks for any advise
Chris
I
Hi snowside ,
If you want to display these five visual at the same time, you should create measures for each company.
If you just want to compare them, you can create a slicer:
First, create a new table for slicer
Then apply it to the slicer and change it to single select:
Create a measure and apply it to the visual
Measure = CALCULATE(SUM('Table'[Value]),FILTER('Table',[Company]=SELECTEDVALUE('For slicer'[Company]))Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
7 Replies
- v-jianboli-msftCommunity Support
Hi snowside ,
Based on your description, I have created a simple sample like this:
You can create a measure like this :
Company A = CALCULATE(SUM('Table'[Value]),FILTER('Table',[Company]="A"))Then add it to the Donut Chart:
Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- snowsideNew Member
Thank you. So i need a Measure for every single company?
- snowsideNew Member
Hi
Thanks for the response. The filtering with company is clear. In every visual i have 10362 total values. and i want to show how much of percentage for example the 1108 are...
- snowsideNew Member
I want to have 5 different visuals and on each visual the percentage of 1 category compare to the total amount of the the total...
- v-jianboli-msftCommunity Support
Hi snowside ,
If you want to display these five visual at the same time, you should create measures for each company.
If you just want to compare them, you can create a slicer:
First, create a new table for slicer
Then apply it to the slicer and change it to single select:
Create a measure and apply it to the visual
Measure = CALCULATE(SUM('Table'[Value]),FILTER('Table',[Company]=SELECTEDVALUE('For slicer'[Company]))Final output:
Best Regards,
Jianbo Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.