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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Syndicate_Admin
Administrator
Administrator

Necesita valor repetido con respecto a las fechas en blanco

Hola a todos,

Necesito valor repetido con respecto a las fechas en blanco a continuación estoy mostrando imagen con valores de color rojo.

Screenshot_17.jpg

Archivo .pbix:

https://drive.google.com/file/d/1p-ryWXkF0kx3VkRRPtiRjccOeja8QohZ/view?usp=sharing

2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

Hola, @mohittimpus

Intente medir como se muestra a continuación:

Measure2 = 
VAR a =
    SELECTEDVALUE ( 'Date'[Date] )
VAR b =
    CALCULATE (
        MAX ( 'Date'[Date] ),
        FILTER ( ALL ( 'Date' ), 'Date'[Date] <= a && [M] <> BLANK () )
    )
RETURN
    CALCULATE ( [M], 'Date'[Date] = b )

32.png

Por favor, compruebe mi archivo pbix para obtener más detalles.

Saludos
Equipo de apoyo a la comunidad _ Eason

Syndicate_Admin
Administrator
Administrator

@mohittimpus , Pruebe una medida como

calculate([lead expected], filter(allselected(Table), Table[Date] = calculate(Max(Table[Date]), filter(allselected(Table), Table[Date] <=max(Table[Date]) y not (isblank([lead expected]))))))

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors