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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply

Issues with CALCULATE (SUM)

Hi, I'm trying to get a columbn to SUM all the values for a given code, in every row that code is in. See below example

 

But the issue is my formula I'm using keeps giving just the SUM of the one row every time

 

Any help is much appreciated

 

Test = CALCULATE( SUM( Table[Value]), Table[Code] = Table[Code] )

 

CodeValueActual ResponseRequired Response
A226
A226
A226
B224
B224
C228
C228
C228
C228
D224
D224
1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

Here are a couple of additional alternatives:

Test =
VAR _Code = Table[Code]
RETURN
    CALCULATE ( SUM ( Table[Value] ), Table[Code] = _Code )

 

Test =
CALCULATE ( SUM ( Table[Value] ), ALLEXCEPT ( Table, Table[Code] ) )

View solution in original post

4 REPLIES 4
AlexisOlson
Super User
Super User

Here are a couple of additional alternatives:

Test =
VAR _Code = Table[Code]
RETURN
    CALCULATE ( SUM ( Table[Value] ), Table[Code] = _Code )

 

Test =
CALCULATE ( SUM ( Table[Value] ), ALLEXCEPT ( Table, Table[Code] ) )

@DimaMD thanks - that works for some, but a lot of the codes are adding up as they go, so onlt the last code in the table has the full total - Is there a better function that EARLIER() ??

I got past this by adding another column that gives the MAX result. Ideally I'd like to avoid having 2 columns

DimaMD
Solution Sage
Solution Sage

hi @michaelmichael  If you use this in the count column, try this code

CALCULATE(SUM('Лист1'[Value]),'Лист1'[Code] = EARLIER('Лист1'[Code]))

 Screenshot_9.jpg


__________________________________________

Thank you for your like and decision

__________________________________________

Greetings from Ukraine

To help me grow PayPal: embirddima@gmail.com

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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