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
Hi All,
I am trying to do a headcount of the workforce who are assigned work that equates to less than 85% of their available time.
Many thanks in advance!
For example:
| Staff Name | Supply hours | Assignment hours | Assignment % (Assign hours/ Supply) |
| Alice | 8 | 8 | 100% |
| Bob | 8 | 6 | 75% |
| Colin | 8 | 4 | 50% |
Expected results:
I would expect that I have a headcount of 2 people (Bob and Colin), because their Assignment% is less than 85%.
What I tried:
Headcount for Assign <0.85 = CALCULATE(COUNT([Staff Name]), [Assignment%] < 0.85)
Solved! Go to Solution.
Hi,
Please check the below picture and the attached pbix file.
It is for creating a measure.
Headcount expected measure: =
COUNTROWS (
FILTER ( Data, DIVIDE ( Data[Assignment hours], Data[Supply hours] ) < 0.85 )
)
Hi,
Please check the below picture and the attached pbix file.
It is for creating a measure.
Headcount expected measure: =
COUNTROWS (
FILTER ( Data, DIVIDE ( Data[Assignment hours], Data[Supply hours] ) < 0.85 )
)
Thank you so much, I was on the right path but I have much to learn and understand about how this works. I appreciate your help!!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |