The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
The absent count is a measure not a calculated column... I guess that's the reason why its not working?
Count More than 6 absence means you need group data at a level and then filter it. You need to use values to group data at a level.
It would be something like this
Absence count = COUNT('Reporting Absence'[Id])
ID count = CALCULATE(SUMX(values('Reporting Absence'[Id]),Absence count ),FILTER('Reporting Absence',[Absence count]>=6))
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks.
My Recent Blog - https://community.powerbi.com/t5/Community-Blog/Comparing-Data-Across-Date-Ranges/ba-p/823601
I tried to create the absent count and ID count with measures. It still returns blank...
To help you further I need pbix file. If possible please share a sample pbix file after removing sensitive information.Thanks.
My Recent Blog -
https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-tr...
Hi,
Does this work?
ID count = CALCULATE(COUNTROWS('Reporting Absence'),'Reporting Absence'[Absence count]>=6)
My assumption is that Absence count is a column in your dataset.