Forum Discussion
mrslyfox911
3 years agoAdvocate III
Distinct sum
Hi, Please help figureout how to approach measure which will return distincted summary for the column values Example USR_ID TRNX Events 100 9001 6 100 9002 6 100 9003 6 1...
- 3 years ago
mrslyfox911 , Try a measure like
Sumx(Distinct(Table[Events]), [Events])
or
sumx(summarize(Table, Table[User_id], Table[Events]) , [Events])
Mahesh0016
3 years agoSuper User
- mrslyfox9113 years agoAdvocate III
Hello Mahesh0016
unfortunnatelly solluction not applicable for me, because I'm not looking for the summary of min and max values. target was to sum distinct value per sub category