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

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

Reply
rogerdea
Helper IV
Helper IV

Retun 0 no está en blanco cuando se utilizan variables

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

1 ACCEPTED SOLUTION
themistoklis
Community Champion
Community Champion

@rogerdea

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

View solution in original post

1 REPLY 1
themistoklis
Community Champion
Community Champion

@rogerdea

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

Helpful resources

Announcements
OCT PBI Update Carousel

Power BI Monthly Update - October 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

October NL Carousel

Fabric Community Update - October 2024

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

Top Solution Authors