Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Tengo una matriz con n nivel de jerarquía.
El nivel superior puede ser de tipos 'característica' o 'corrección de errores', con niveles inferiores, subtareas, etc.
Quiero filtrar la matriz por nivel superior para que solo muestre las características o las correcciones de errores y sus subtareas.
Pero el uso de slicer (type='feature') oculta todas las filas de subnivel.
Estas son algunas de las cosas que he probado sin éxito.
Top check =
INT(
CALCULATE(
MAX(mytable[type]),
REMOVEFILTERS(mytable)) = "feature"
)
Top Level = IF(ISINSCOPE('mytable'[Level1]) , SUM('mytable'[value]), BLANK())
Top pick =
IF(
ISINSCOPE('mytable'[Level1]) && NOT(ISINSCOPE('mytable'[Level2])) && NOT(ISINSCOPE('mytable'[Level3])),
IF(
NOT([this_type] = "feature"),
BLANK(),
[this_type]
),
[this_type]
)
Cualquier ayuda será muy apreciada. Gracias.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.