Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have a “Date” table (each day in 2022) and "employ" table (employee number, dept, onboard date, turnover date).
I would like to calculate the active employee number in 2022 each month.
so here I create a measure as below but find the number does not change with dept Slicer
Active employee= VAR date_=MAX('Date'[date])
Return
Calculate(
countrows('employ'),
FILTER(
ALL(’employ'),
'employe'[onboard date]<=date_&&('employe'[turnover date]>date_||'employe'[turnover date]=BLANK())
)
)
Really appreciate any response, thank you.
Solved! Go to Solution.
Hi @Redpandas ,
As checked the formula of your measure, it applied ALL function. And it returns all the rows in a table, or all the values in a column, ignoring any filters that might have been applied. Please update the formula of the measure as below and check if it can get the correct result...
Active employee = VAR date_ = MAX ( 'Date'[date] ) RETURN CALCULATE ( COUNTROWS ( 'employ' ), FILTER ( ALLSELECTED ( 'employ' ), 'employe'[onboard date] <= date_ && ( 'employe'[turnover date] > date_ || 'employe'[turnover date] = BLANK () ) ) ) |
If the above one can't help you get the desired result, please provide some sample data in your table 'employ' (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Hi @Redpandas ,
As checked the formula of your measure, it applied ALL function. And it returns all the rows in a table, or all the values in a column, ignoring any filters that might have been applied. Please update the formula of the measure as below and check if it can get the correct result...
Active employee = VAR date_ = MAX ( 'Date'[date] ) RETURN CALCULATE ( COUNTROWS ( 'employ' ), FILTER ( ALLSELECTED ( 'employ' ), 'employe'[onboard date] <= date_ && ( 'employe'[turnover date] > date_ || 'employe'[turnover date] = BLANK () ) ) ) |
If the above one can't help you get the desired result, please provide some sample data in your table 'employ' (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.
How to upload PBI in Community
Best Regards
Thank you Rena for giving me hint of replacing ALL(’employ'). And I tried Keepfilter and worked. ALLSELECTED ( 'employ' ) work for slicers but doesn‘t know for table with separated “Dept”.
Try this instead:
Active employee= VAR date_=MAX('Date'[date])
Return
Calculate(
countrows('employ'),
'employe'[onboard date]<=date_&&('employe'[turnover date]>date_||'employe'[turnover date]=BLANK())
)
User | Count |
---|---|
114 | |
73 | |
56 | |
48 | |
44 |
User | Count |
---|---|
171 | |
118 | |
60 | |
59 | |
54 |