Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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 July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
71 | |
67 | |
51 | |
39 | |
26 |
User | Count |
---|---|
87 | |
54 | |
45 | |
40 | |
36 |