Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am sure there is a easy change I need to make to get my slicers to work. But I am not sure what it is.
This measure is counting how many employees we had active within a given timeframe. The problem is that the filter functions and all function have caused any slicer to not work with it. I am wondering what tweak I can make to have it filter with the slicers I have.
Hi @Anonymous ,
Please try:
Measure =
VAR selectedDate =
MAX ( 'calendar'[Day_Date] )
VAR result =
CALCULATE (
COUNTROWS ( 'Paycom EmployeeDemographics' ),
FILTER (
ALLSELECTED ( 'Paycom EmployeeDemographics' ),
'Paycom EmployeeDemographics'[HireDate] <= selectedDate
&& (
'Paycom EmployeeDemographics'[TerminationDate] >= selectedDate
|| 'Paycom EmployeeDemographics'[TerminationDate] = BLANK ()
)
)
)
Var Rehireresult =
IF (
COUNT ( 'Paycom EmployeeDemographics'[including rehired] ) = 2,
CALCULATE (
COUNTROWS ( 'Paycom EmployeeDemographics' ),
FILTER (
ALLSELECTED ( 'Paycom EmployeeDemographics' ),
'Paycom EmployeeDemographics'[RehireDate] <= selectedDate
&& (
'Paycom EmployeeDemographics'[TerminationDate] >= selectedDate
|| 'Paycom EmployeeDemographics'[TerminationDate] = BLANK ()
)
)
),
0
)
RETURN
result+Rehireresult
If this does not work, could you consider providing a sanitized file for testing? That would be helpful.
Best Regards,
Gao
Community Support Team
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
How to get your questions answered quickly -- How to provide sample data
Thank you for the response! It does make the slicers work but the numbers change drastically by about 200. I am not sure why it does that.
Here is what the graph looks like:
Here is some of my data and how its setup:
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 97 | |
| 73 | |
| 50 | |
| 48 | |
| 45 |