The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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] )
Code | Value | Actual Response | Required Response |
A | 2 | 2 | 6 |
A | 2 | 2 | 6 |
A | 2 | 2 | 6 |
B | 2 | 2 | 4 |
B | 2 | 2 | 4 |
C | 2 | 2 | 8 |
C | 2 | 2 | 8 |
C | 2 | 2 | 8 |
C | 2 | 2 | 8 |
D | 2 | 2 | 4 |
D | 2 | 2 | 4 |
Solved! Go to Solution.
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] ) )
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
hi @michaelmichael If you use this in the count column, try this code
CALCULATE(SUM('Лист1'[Value]),'Лист1'[Code] = EARLIER('Лист1'[Code]))
User | Count |
---|---|
17 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
26 | |
13 | |
12 | |
9 | |
8 |