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

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
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.

Top Solution Authors