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

ACUMULATIVO PARA CORREO ELECTRÓNICO

Aquí están mis datos

Correo electrónicoFechaContar
Dan en abc.xyz7/1/202018
Roxy en abc.xyz7/1/202020
Sam en abc.xyz7/1/202022
Dan en abc.xyz8/1/202030
Roxy en abc.xyz8/1/202040
Sam en abc.xyz8/1/202050

Estoy tratando de calcular esto en POWERBI

Dan4848
Roxy60108
Yo72180

Soy capaz de conseguir que los recuentos funcionen fácilmente por cálculo para acumulativo no está funcionando

Calculate(sum([count]), filter(all(table),table[email]<-max(table[email])))

1 ACCEPTED SOLUTION
Syndicate_Admin
Administrator
Administrator

No @MEGHAMONTY,

Por favor, compruebe:

cumulative count =
CALCULATE (
    SUM ( 'Table'[Count] ),
    FILTER ( ALL ( 'Table' ), 'Table'[Email] <= MAX ( 'Table'[Email] ) )
)

count.JPG

Saludos

Icey

Si este post ayuda, entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

View solution in original post

3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

No @MEGHAMONTY,

Por favor, compruebe:

cumulative count =
CALCULATE (
    SUM ( 'Table'[Count] ),
    FILTER ( ALL ( 'Table' ), 'Table'[Email] <= MAX ( 'Table'[Email] ) )
)

count.JPG

Saludos

Icey

Si este post ayuda, entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.

Syndicate_Admin
Administrator
Administrator

@MEGHAMONTY

Capture.PNG

_sumCount:= SUMX('Table 1','Table 1'[Count])

_cumulativeTotal:= 
VAR _1 = MAX('Table 1'[Date])
VAR _2 = CALCULATE([_sumCount],ALL('Table 1'[Date]),'Table 1'[Date]<=_1)
RETURN _2

@MEGHAMONTY¿probaste lo anterior?

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.