The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
hola
¿Puede alguien por favor aconsejar cómo mostrar los ingresos, gastos y ganancias en una matriz?
Mis ingresos y gastos son cifras positivas, como a continuación
Ingresos 120
Gasto 20
Total 140
¿Cómo cambiar el Total a beneficio que debe ser 100?
Por favor, avise y muchas gracias.
Solved! Go to Solution.
No @hongyuliu ,
Intente utilizar la función ISINSCOPE.
Measure =
IF (
ISINSCOPE ( 'Table'[Income/Expense] ),
SUM ( 'Table'[Value] ),
CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Income/Expense] = "Income" )
- CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Income/Expense] = "Expense" )
)
Saludos
Esteban Tao
Si este post ayuda,entonces por favor considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.
No @hongyuliu ,
Intente utilizar la función ISINSCOPE.
Measure =
IF (
ISINSCOPE ( 'Table'[Income/Expense] ),
SUM ( 'Table'[Value] ),
CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Income/Expense] = "Income" )
- CALCULATE ( SUM ( 'Table'[Value] ), 'Table'[Income/Expense] = "Expense" )
)
Saludos
Esteban Tao
Si este post ayuda,entonces por favor considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.