cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
webportal
Impactful Individual
Impactful Individual

Sum the value of one column based on the maximum value of another column

I need a measure to add the last non blank value from column SaldoConta from the table pcsabelow from each column conta.

 

The criteria to define last non blank is the one with maximum value in column AnoMes.

 

Capturar.PNG

 

I've tried a million different DAX expressions but it seems impossible to get what I want.

 

It should add only the LAST nonblank value in AnoMes, so for conta 110, it should be 112,56.

1 ACCEPTED SOLUTION

Hi @webportal,

 

You could create a formula below to group the max Anomes and Conta.

 

 

t =
ADDCOLUMNS (
    SUMMARIZE ( 'table', [Conta], "maxAnomes", MAX ( 'table'[Anomes] ) ),
    "maxSaldoConta", LOOKUPVALUE (
        'table'[SaldoConta],
        'table'[Conta], [Conta],
        [Anomes], [maxAnomes]
    )
)

 

Then you could create the measure to calculate the sum of [maxSaldoConta].

 

Here is the output.

 

Capture.PNG

 

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
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
v-piga-msft
Resident Rockstar
Resident Rockstar

Hi @webportal,

 

You could have a try with the formula below.

 

 

Measure =
IF (
    LASTNONBLANK ( 'Table'[Anomes], 1 ),
    CALCULATE (
        MAX ( 'Table'[SaldoConta] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[Conta] = MAX ( 'Table'[Conta] )
                && 'Table'[Anomes] = MAX ( 'Table'[Anomes] )
        )
    )
)

Here is the output.

 

 

Capture.PNG

If I miss something, please share your desired output, so that we can help further investigate on it?

 

Best Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-piga-msft thank you for helping!

The issue here is I don't have a filter context for "conta" and I need to sum the values of "SaldoConta" of the rows that correspond to the maximum "AnoMes" of each 'conta' - which can be different for each "conta".

Hi @webportal,

 

You could create a formula below to group the max Anomes and Conta.

 

 

t =
ADDCOLUMNS (
    SUMMARIZE ( 'table', [Conta], "maxAnomes", MAX ( 'table'[Anomes] ) ),
    "maxSaldoConta", LOOKUPVALUE (
        'table'[SaldoConta],
        'table'[Conta], [Conta],
        [Anomes], [maxAnomes]
    )
)

 

Then you could create the measure to calculate the sum of [maxSaldoConta].

 

Here is the output.

 

Capture.PNG

 

Best  Regards,

Cherry

Community Support Team _ Cherry Gao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors