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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Hola a todos
La siguiente medida de DAX se vuelve a poner en blanco cuando la agregué a una visualización de tabla.
Leaver2 = CALCULATE(COUNTROWS(Person),FILTER(VALUES(Person[EmploymentStatus]),Person[EmploymentStauts]="Inactivo"))
He creado baccicamente una columna de cusom llamada EmploymentStatus que usa una declaración if que dice en la Termiantion Daste es nula, entonces el valor debería ser "Activo" de lo contrario "Inactivo" y he incluido esto en mi medida anterior para obtener un recuento de egresados cada mes.
¿Alguien puede ver lo que he hecho que no trae ningún valor en absoluto?
Pruebe esta medida
Leaver2 =
COUNTROWS ( FILTER ( Person, Person[EmploymentStauts] = "Inactive" ) )Si desea remove filtros de contexto de columnas y filas en la consulta actual, agregue all()/ ALLSELECTED().
Leaver2 =
COUNTROWS (
FILTER ( ALLSELECTED ( Person ), Person[EmploymentStauts] = "Inactive" )
)
Saludos
ShundaSteph
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.