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! Learn more
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.
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.