Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi,
I am learning Power BI - hope this question is not too obvious.
I am trying to create a measure which counts values in a data set through a unary relationship. It's an employee table which includes the employee's manager ID. I want the measure to tell me, for each employee, how many other employees they manage. The image included articulates it pretty well - trying to create the "Number Direct Reports" column. Appreciate any ideas, thanks!
Solved! Go to Solution.
Hi, @savage63073
Please check the below picture and the measure.
Number of Direct Reports From =
VAR currentid =
MAX ( Data[EmpID] )
RETURN
CALCULATE (
COUNTROWS ( Data ),
FILTER ( ALL ( Data ), Data[ManagerID] = currentid )
) + 0
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
Hi, @savage63073
Please check the below picture and the measure.
Number of Direct Reports From =
VAR currentid =
MAX ( Data[EmpID] )
RETURN
CALCULATE (
COUNTROWS ( Data ),
FILTER ( ALL ( Data ), Data[ManagerID] = currentid )
) + 0
Hi, My name is Jihwan Kim.
If this post helps, then please consider accept it as the solution to help other members find it faster, and give a big thumbs up.
Linkedin: linkedin.com/in/jihwankim1975/
Twitter: twitter.com/Jihwan_JHKIM
awesome, thank you!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.