cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
cecitorresHF
Helper I
Helper I

Total Acumulado

Hola, estoy intentando crear una columna con totales acumulados para la columna 'Prioritised Jobs' por semana. Esta es mi tabla actual. (40, 41, 42, etc son semanas)

 

cecitorresHF_0-1635194698647.png

 

1 ACCEPTED SOLUTION

Hi @cecitorresHF 

Try sumx funtcion to calculate the sum of measure. 

Here is my sample.

1.png

Measure:

M_Prioritised Jobs = SUM('Table'[Prioritised Jobs])
Cumulative Total =
SUMX (
    FILTER (
        ALL ( 'Table' ),
        'Table'[Month] = MAX ( 'Table'[Month] )
            && 'Table'[level1] <= MAX ( 'Table'[level1] )
    ),
    [M_Prioritised Jobs]
)

Result is as below.

1.png

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
cecitorresHF
Helper I
Helper I

Thanks, but this is not working because all the columns are measuremets 

Hi @cecitorresHF 

Try sumx funtcion to calculate the sum of measure. 

Here is my sample.

1.png

Measure:

M_Prioritised Jobs = SUM('Table'[Prioritised Jobs])
Cumulative Total =
SUMX (
    FILTER (
        ALL ( 'Table' ),
        'Table'[Month] = MAX ( 'Table'[Month] )
            && 'Table'[level1] <= MAX ( 'Table'[level1] )
    ),
    [M_Prioritised Jobs]
)

Result is as below.

1.png

Best Regards,
Rico Zhou

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

VahidDM
Super User
Super User

Hi @cecitorresHF 

 

Try this to add a column to your table:

Column = calculate(sum([Prioritised Jobs]),filter(all(table),[Prioritised Jobs]<=earlier([Prioritised Jobs]))))

 

Or this, measure:

Column = calculate(sum([Prioritised Jobs]),filter(all(table),[Prioritised Jobs]<=Max([Prioritised Jobs]))))

 

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.

Appreciate your Kudos!!

 

Helpful resources

Announcements
May 2023 update

Power BI May 2023 Update

Find out more about the May 2023 update.

Submit your Data Story

Data Stories Gallery

Share your Data Story with the Community in the Data Stories Gallery.

Top Solution Authors