Forum Discussion
Getting Sum of Unique Values
- 1 year ago
Hello AkshayManke
Try this measure
Total of Unique Values =
SUMX(
SUMMARIZE(
'YourTable',
'YourTable'[User],
'YourTable'[Calculated Column]
),
'YourTable'[Calculated Column]
)
Thanks,
Pankaj Namekar | LinkedInIf this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.
Hello AkshayManke
Try this measure
Total of Unique Values =
SUMX(
SUMMARIZE(
'YourTable',
'YourTable'[User],
'YourTable'[Calculated Column]
),
'YourTable'[Calculated Column]
)
Thanks,
Pankaj Namekar | LinkedIn
If this solution helps, please accept it and give a kudos (Like), it would be greatly appreciated.
Hi pankajnamekar25, i got the expected result using the DAX. Thanks a lot for the help. !!