Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

unique value in measure column

Hi All, I am trying to get sum of only distinct measure values for a particular Name if the value is repeated.   Name Code Type Price 10G 72 S 10 11C 86 A 12 3D 18 S 10 ...
  • johnt75's avatar
    3 years ago

    Try

    Sum of unique values =
    SUMX ( SUMMARIZE ( 'Table', 'Table'[Name], 'Table'[Price] ), 'Table'[Price] )