March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hola
Estoy tratando de calcular el número de informes directos en una tabla y agregar como una columna calculada como se ve a continuación en la última columna.
Tengo datos mensuales adjuntos a la tabla cada mes y el cálculo necesita calcular el número de informes directos para cada mes por separado.
Muchas gracias de antemano por cualquier solución
Solved! Go to Solution.
Esta expresión debe funcionar para la columna calculada
Direct Reports This Month =
VAR __thisemployee = Employees[EmployeeID]
RETURN
CALCULATE (
COUNTROWS ( Employees ),
ALLEXCEPT ( Employees, Employees[Period] ),
Employees[ManagerID] = __thisemployee
)
Si esto funciona para usted, márquelo como la solución. Los elogios también son apreciados. Por favor, avísame si no.
saludos
palmadita
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
@enestkm, deberías intentar
Ruta y longitud de ruta
https://docs.microsoft.com/en-us/dax/understanding-functions-for-parent-child-hierarchies-in-dax
https://simplebiinsights.com/power-bi-path-function-for-parent-child-hierarchies-in-dax/
https://docs.microsoft.com/en-us/dax/pathlength-function-dax
Esta expresión debe funcionar para la columna calculada
Direct Reports This Month =
VAR __thisemployee = Employees[EmployeeID]
RETURN
CALCULATE (
COUNTROWS ( Employees ),
ALLEXCEPT ( Employees, Employees[Period] ),
Employees[ManagerID] = __thisemployee
)
Si esto funciona para usted, márquelo como la solución. Los elogios también son apreciados. Por favor, avísame si no.
saludos
palmadita
To learn more about Power BI, follow me on Twitter or subscribe on YouTube.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.