Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Estoy tratando de asegurarme de devolver un 0 y no en blanco en este campo. No puedo conseguir que funcione hasta ahora, mi código es el siguiente. cualquier ayuda muy apreciada:
Weekly Target LB =
VAR Weeks =
round(DATEDIFF(TODAY(),ENDOFYEAR('Date table'[Date],"31/01/2021"),DAY)/7,0)
VAR OS =
COUNTROWS(FILTER('Metadata','Metadata'[Status] <> "RecordComplete"))
RETURN
OS / Weeks
Solved! Go to Solution.
Pruebe cualquiera de las 3 opciones siguientes:
1. Medir á CALCULATE ( SUM (tabla[columna] ), FILTRO (... ) + 0 (Añadir cero al final de la fórmula)
2. Medir : IF ( ISBLANK([Amount]), 0, [Amount])
3. Medida: IF (CALCULATE ( SUM ( Gastos[Real] ) ) - BLANK (), 0, CALCULATE ( SUM ( Gastos[Real] ) )
En su caso, intente primero lo siguiente:
RETURN
(OS / Weeks) + 0
Pruebe cualquiera de las 3 opciones siguientes:
1. Medir á CALCULATE ( SUM (tabla[columna] ), FILTRO (... ) + 0 (Añadir cero al final de la fórmula)
2. Medir : IF ( ISBLANK([Amount]), 0, [Amount])
3. Medida: IF (CALCULATE ( SUM ( Gastos[Real] ) ) - BLANK (), 0, CALCULATE ( SUM ( Gastos[Real] ) )
En su caso, intente primero lo siguiente:
RETURN
(OS / Weeks) + 0
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.