Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
Hola
Tengo una medida de ganancias para calcular la diferencia entre Ingresos y Gastos.
El DAX es
Cuenta | Índice |
Ingresos | 1 |
Gasto | 2 |
Beneficio | 3 |
Cuenta | Cantidad |
Ingresos | -200 |
Gasto | 100 |
Solved! Go to Solution.
HOLA @hcze,
Puede utilizar la función lookupvalue para obtener el resultado en función de la cuenta actual:
Measure =
LOOKUPVALUE (
Transaction[Amount],
Account[Account], SELECTEDVALUE ( Transaction[Account] ),
SUM ( Account[Amount] )
)
saludos
Xiaoxin Sheng
HOLA @hcze,
Puede utilizar la función lookupvalue para obtener el resultado en función de la cuenta actual:
Measure =
LOOKUPVALUE (
Transaction[Amount],
Account[Account], SELECTEDVALUE ( Transaction[Account] ),
SUM ( Account[Amount] )
)
saludos
Xiaoxin Sheng
@hcze , si tiene tabla como la última (Tabla2), Entonces mejor crear una tabla como esta y unirse con la tabla de cuenta
Unión( Tabla 2,
resume(Tabla 2, "Cuenta", "Beneficio", "Importe", suma(Tabla2[Importe])))
algo así como :
Importe2
Transacción deVARTM SUM('Transaction'[Amount])
Ingresos de VAR:calcular(transacción,filtro(cuenta,[cuenta]-"ingresos"))
Var Expense-calculate(transaction,filter(account,[account]-"expense"))
Ganancias del VAR-Ingresos+Gastos
devolución
•IF(HASONEVALUE(account[account]),transaction,Revenue+Expense-Profit)
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.