Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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
)
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
2 | |
1 | |
1 | |
1 | |
1 |