Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hola
Tengo datos de la siguiente manera:
Se | GATO | VALOR |
Este | A | 100 |
Este | B | 200 |
Este | C | 300 |
Este | D | 200 |
Este | E | 300 |
Desea mostrar un valor de segmento Este como 500 (es decir, Suma (gato A + gato B + gato C + gato D) - Suma (Cat E) = (100 + 200 + 300 + 200) - 300 = 500 )
Por favor, ayúdame a hacer
Gracias
AshDil
Solved! Go to Solution.
@AshDil , Pruebe a medir como
calculate(sum(Table[value]), filter(all(Table[CAT]), Table[CAT] en {"A","B","C","D"})) - calculate(sum(Table[value]), filter(all(Table[CAT]), Table[CAT] ="E") )
Si es necesario, retire todo el filtro
@AshDil , Pruebe a medir como
calculate(sum(Table[value]), filter(all(Table[CAT]), Table[CAT] en {"A","B","C","D"})) - calculate(sum(Table[value]), filter(all(Table[CAT]), Table[CAT] ="E") )
Si es necesario, retire todo el filtro
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.