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
Anonymous
Not applicable

disregard duplicated values in calculation

Hi I have a table with categories with duplicated values and I wanted to have a average, but disregarding the duplicates, does someone know a way to calculate it?

 

The table is like this below, and I have a table like the one shown in the "Value A" but final result shoud be 28,33 as in "Value B"

 

CategoryValue AValue B
A1010
B30 
B3535
C4040
 28,7528,33

 

Thanks guys

1 ACCEPTED SOLUTION
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

You could create a calculated column:

Value B =
IF (
    'Test data'[Value A]
        = CALCULATE (
            LASTNONBLANK ( 'Test data'[Value A], 1 ),
            ALLEXCEPT ( 'Test data', 'Test data'[Category] )
        ),
    'Test data'[Value A],
    BLANK ()
)

1.PNG

 

Then, insert a table visual, aggreate [Value B] with "Average".

2.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
v-yulgu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

You could create a calculated column:

Value B =
IF (
    'Test data'[Value A]
        = CALCULATE (
            LASTNONBLANK ( 'Test data'[Value A], 1 ),
            ALLEXCEPT ( 'Test data', 'Test data'[Category] )
        ),
    'Test data'[Value A],
    BLANK ()
)

1.PNG

 

Then, insert a table visual, aggreate [Value B] with "Average".

2.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

This looks preety good, thanks!

Greg_Deckler
Community Champion
Community Champion

How about:

 

Measure = AVERAGEX(Table,DISTINCT(Table[Column])) 


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

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