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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
Dayna
Helper V
Helper V

Sum of Last Value Rows

Hello,

 

I have a measure that is calculating the sum of annual volume by the last stage in the process:

Annual Volume (Latest) = 
CALCULATE(sum(Products[AnnualVolume]), FILTER(Processes, Processes[Ordering] = MAX(Processes[Ordering])))

 

I'm getting the last record based on the index column on the 'processes' table for the order in which the processes go through.

 

This is working fine, so example data looks like this:

Dayna_0-1665150500655.png

 

Now, I want the grand total of the processes, so for the above I'd expect a value of 120898123. I'm then going to group this by customer, item, etc etc etc.

 

Can someone help how I achieve this? I expect another measure, if you could advise it would really be appreciated.

 

Many thanks,

Dayna

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

@Dayna,

 

Try this measure:

 

Annual Volume Total (Latest) =
SUMX ( VALUES ( Processes[Name] ), [Annual Volume (Latest)] )

 

The column in VALUES should be the column in your visual. If you need to add multiple columns to your visual, use SUMMARIZE (instead of VALUES) to create unique combinations of the columns in your visual.

 

I recommend using a column filter instead of a table filter in your original measure. In many cases they return the same result, but it's safer to filter only what you need:

 

Annual Volume (Latest) =
CALCULATE (
    SUM ( Products[AnnualVolume] ),
    Processes[Ordering] = MAX ( Processes[Ordering] )
)

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Dayna
Helper V
Helper V

Thank you @DataInsights !

DataInsights
Super User
Super User

@Dayna,

 

Try this measure:

 

Annual Volume Total (Latest) =
SUMX ( VALUES ( Processes[Name] ), [Annual Volume (Latest)] )

 

The column in VALUES should be the column in your visual. If you need to add multiple columns to your visual, use SUMMARIZE (instead of VALUES) to create unique combinations of the columns in your visual.

 

I recommend using a column filter instead of a table filter in your original measure. In many cases they return the same result, but it's safer to filter only what you need:

 

Annual Volume (Latest) =
CALCULATE (
    SUM ( Products[AnnualVolume] ),
    Processes[Ordering] = MAX ( Processes[Ordering] )
)

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.