Hola a todos,
Me gustaría que la tarjeta KPI muestre el valor trimestral más actual. Aquí (ver captura de pantalla adjunta) mi tarjeta KPI muestra el valor del mes más actual, ¿cómo puedo hacer que muestre el valor trimestral más actual en su lugar? Imagino que tendré que escribir un cálculo de DAX, pero no sé cómo. Si alguien pudiera enseñarme y ayudarme, ¡lo agradecería mucho!
850 =
IF(
ISBLANK(
SUM(Retailer_Compliance[VOL_850])
),
0,
SUM(Retailer_Compliance[VOL_850]
)
)
855 =
IF(
ISBLANK(
SUM(Retailer_Compliance[VOL_855])
),
0,
SUM(Retailer_Compliance[VOL_855]
)
)
855_TO_850 =
IFERROR(
[855] / [850],
0
)
Solved! Go to Solution.
Hola a todos,
Pude resolverlo yo mismo calculando el 850_QTD, 855_QTD, 855_TO_850_QTD
850_QTD =
CALCULATE(
[850],
DATESQTD(
'Calendar Lookup'[Start of Month]
)
)
855_QTD =
CALCULATE(
[855],
DATESQTD(
'Calendar Lookup'[Start of Month]
)
)
855_TO_850_QTD =
IFERROR(
[855_QTD] / [850_QTD],
0
)
Hola a todos,
Pude resolverlo yo mismo calculando el 850_QTD, 855_QTD, 855_TO_850_QTD
850_QTD =
CALCULATE(
[850],
DATESQTD(
'Calendar Lookup'[Start of Month]
)
)
855_QTD =
CALCULATE(
[855],
DATESQTD(
'Calendar Lookup'[Start of Month]
)
)
855_TO_850_QTD =
IFERROR(
[855_QTD] / [850_QTD],
0
)
Power BI release plans for 2023 release wave 1 describes all new features releasing from April 2023 through September 2023.
Make sure you register today for the Power BI Summit 2023. Don't miss all of the great sessions and speakers!
Join the biggest FREE Business Applications Event in LATAM this February.
User | Count |
---|---|
3 | |
1 | |
1 | |
1 | |
1 |