Forum Discussion
apatnola
Helper I
7 years agoCount rows by Year
I want to figure out how to show each person's % of the total year in the stacked column chart below. Each color below represents the count for each employee. I want to show as a tool tip each color'...
- 7 years ago
You can create 3 measures
1. TotalCount = CALCULATE(COUNT(Table[Column]))
Use this 1st measure as value
2. TotalCountForAllEmployees = CALCULATE(COUNT(Table[Column]),ALL(Table[Employees]))
3. %CountPerEmployee = DIVIDE(TotalCount,TotalCountForAllEmployees)
Use this 3rd measure as tooltip.
I assume you are using Employees as Legend values.
Attached is a example of how this is going to look. I am using Region instead of Employees.
Hope this helps !!
Thanks
Ashish_Mathur
Super User
7 years agoHi,
Share the link from where i can download your PBI file.
JIGAR
Resolver IV
7 years agoHi,
You can download the PBI file from this location
https://drive.google.com/open?id=16TOpguo6yv-Z0IByBadWmiJAauGgxM1h
You can download the PBI file from this location
https://drive.google.com/open?id=16TOpguo6yv-Z0IByBadWmiJAauGgxM1h
- Ashish_Mathur7 years ago
Super User
Hi,
I believe your question has been answered. Therefore i am not downloading your file.