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
Creé la siguiente medida de dax, pero no pude ver el total cuando la usé en una tabla, también obtuve un valor en blanco cuando se usó en el objeto visual de tarjeta.
Hola @Greg_Deckler , gracias por la respuesta rápida, agregaré más.
Hola @Khurramalidar ,
Con respecto a su pregunta, 'Total' no tiene ningún efecto de filtrado. Dado que también está utilizando la función 'selectedvalue', la función devuelve null.
Intenta modificar tu expresión.
Measure =
VAR _a = SELECTEDVALUE('Table'[Date])
VAR _b = SWITCH(TRUE(),
YEAR(_a) = 2024,SELECTEDVALUE('Table'[Amount]))
RETURN IF(ISBLANK(_a),CALCULATE(SUM('Table'[Amount]),YEAR('Table'[Date]) = 2024),_b)
@Khurramalidar Primero, por favor, vota por esta idea: https://ideas.powerbi.com/ideas/idea/?ideaid=082203f1-594f-4ba7-ac87-bb91096c742e
Esto parece un problema de totales de medida. Muy común. Mira mi post al respecto aquí: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Además, esta Medida Rápida, Totales de Medida, La Última Palabra debería darte lo que necesitas:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
También: https://youtu.be/uXRriTN0cfY
Y: https://youtu.be/n4TYhF2ARe8
Mayo =
INTERRUPTOR (
VERDADERO (),
YEAR ( SELECTEDVALUE('Oportunidades abiertas'[Fecha de cierre estimada]) ) = 2024, SELECTEDVALUE('Oportunidades abiertas'[Ingresos estimados]),
0.00
)
Al usar esta medida, obtengo un $0
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.