Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
hcze
Helper I
Helper I

Total de medida calculada

Hola

Tengo una medida de ganancias para calcular la diferencia entre Ingresos y Gastos.

El DAX es

Amount2 - If(MIN(Account[Account]) á "Profit",CALCULATE(SUM('Transaction'[Amount]),ALLSELECTED('Transaction')),SUM('Transaction'[Amount]))
Me gustaría incluir el beneficio en total. El total debe mostrar 0 para la comprobación de control, pero no puedo lograr eso. Esto es lo que tengo hasta ahora.
2020-10-19_9-38-42.jpg
Gracias por ayudar.
CuentaÍndice
Ingresos1
Gasto2
Beneficio3
CuentaCantidad
Ingresos-200
Gasto100
1 ACCEPTED SOLUTION
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.

View solution in original post

3 REPLIES 3
v-shex-msft
Community Support
Community Support

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

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
amitchandak
Super User
Super User

@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])))

samdthompson
Memorable Member
Memorable Member

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)

// if this is a solution please mark as such. Kudos always appreciated.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.