Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hi
I am trying to calculate number of direct reports in a table and add as a calculated column as seen below in the last column.
I have monthly data appended to the table every month and the calculation needs to calculate number of direct reports for every month seperately .
Many thanks in advance for any solutions
Solved! Go to Solution.
This expression should work for your calculated column
Direct Reports This Month =
VAR __thisemployee = Employees[EmployeeID]
RETURN
CALCULATE (
COUNTROWS ( Employees ),
ALLEXCEPT ( Employees, Employees[Period] ),
Employees[ManagerID] = __thisemployee
)
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
This expression should work for your calculated column
Direct Reports This Month =
VAR __thisemployee = Employees[EmployeeID]
RETURN
CALCULATE (
COUNTROWS ( Employees ),
ALLEXCEPT ( Employees, Employees[Period] ),
Employees[ManagerID] = __thisemployee
)
If this works for you, please mark it as the solution. Kudos are appreciated too. Please let me know if not.
Regards,
Pat
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
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.
User | Count |
---|---|
80 | |
40 | |
31 | |
27 | |
27 |