Forum Discussion
wbhite
5 years agoHelper I
Chart total doesn't match table total
Hello everyone, I'm having an issue with one of the visuals below. Basically, I want both to reflect the number of employees who worked 40+ hours (using my measure Total Hours = SUM('Labor Data'[Reg...
- 5 years ago
You could use a measure like this in the chart.
Overtime Employees = COUNTROWS(FILTER(DISTINCT(Table[employee]),[Total Hour] >= 40))
Pat
mahoneypat
5 years agoMicrosoft Employee
You could use a measure like this in the chart.
Overtime Employees = COUNTROWS(FILTER(DISTINCT(Table[employee]),[Total Hour] >= 40))
Pat
- wbhite5 years agoHelper I
This one worked. Thanks!