Forum Discussion
Count rows by Year
- 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
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
- apatnola7 years ago
Helper I
Thank you for the clear response. Worked like a charm!