I’m sure this is simple, but it’s driving me crazy.
I have a simple set of measures that calculate the number of employee records based on various criteria. First, all records:
All Employee Records = COUNTROWS('Employee Master')
Then just active records:
All Active Emp Records = CALCULATE([All Employee Records], 'Employee Master'[Active Status] = "A")
Then I created a measure that removes additional types of employees using the field “Group”, which I want to use as my main measure on this report:
Employees = CALCULATE([All Active Emp Records],'Employee Master'[Group] <> "5555", 'Employee Master'[Group] <> "9999")
This gets me what I want, but it breaks crossfiltering between tables on my report using the “Group” field. I should be able to click on “EXEM” in the group table and have it filter the table above to show only those 401 employees and whatever their status is. instead, it has no effect. Every other table works (I have a dozen based on different demographic statuses, all showing current employee counts using the “Employees” measure detailed above, so it has to be something with using the “Group” field in the measure. Why can’t I do that?
Thanks for the help.