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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
aszpic
Frequent Visitor

Sum values only one time

Hello everyone,

 

I have a table with 2 columns: 'Code' and 'Values'. The Code can be repeated.

The Values column is the same for each code, so 2 Values for 'CodeA' are equal to each other, and 2 values for 'CodeB' are also the same.

What I need is a measure to sum ONE TIME each value for each code, so in the example of the table below I would only need to sum 1 value for CodeA and 1 value for CodeB and the value for CodeC (3+5+7)

 

I thought a way that is using an auxiliar column named 'Unique' which is '1' if it is the first time the Code appears, and '0' if not, and use a CALCULATE function later. But I couldn't find a way to make this 'Unique' columns.

 

The Unique column would be:

Code     Value   Unique

CodeA   3         1

CodeA   3         0

CodeB   5         1

CodeB   5         0

CodeC   7         1

 

Thanks in advance!

1 ACCEPTED SOLUTION
Sean
Community Champion
Community Champion

@aszpic

 

Here's the MEASURE that will do this for you...

 

Measure =
DIVIDE (
    SUM ( 'Table'[Value] ),
    CALCULATE ( COUNTA ( 'Table'[Code] ), ALLEXCEPT ( 'Table', 'Table'[Code] ) ),
    0
)

 

Sum Values only 1 per Code.png

 

Good Luck! Smiley Happy

View solution in original post

2 REPLIES 2
Sean
Community Champion
Community Champion

@aszpic

 

Here's the MEASURE that will do this for you...

 

Measure =
DIVIDE (
    SUM ( 'Table'[Value] ),
    CALCULATE ( COUNTA ( 'Table'[Code] ), ALLEXCEPT ( 'Table', 'Table'[Code] ) ),
    0
)

 

Sum Values only 1 per Code.png

 

Good Luck! Smiley Happy

aszpic
Frequent Visitor

It will take me a while to understand why this works, but it works. Thank you!

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors
Top Kudoed Authors