Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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 |
100 | 9004 | 6 |
102 | 8001 | 1 |
102 | 8002 | 1 |
Measure should return distinct sum of Event column grouped by USR_ID
mean expected result of measure = 6+1 = 7
Solved! Go to Solution.
@mrslyfox911 , Try a measure like
Sumx(Distinct(Table[Events]), [Events])
or
sumx(summarize(Table, Table[User_id], Table[Events]) , [Events])
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
@mrslyfox911 , Try a measure like
Sumx(Distinct(Table[Events]), [Events])
or
sumx(summarize(Table, Table[User_id], Table[Events]) , [Events])
thank you @amitchandak
that one working as expected
sumx(summarize(Table, Table[User_id], Table[Events]) , [Events])
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
58 | |
58 | |
56 | |
38 | |
29 |
User | Count |
---|---|
75 | |
62 | |
45 | |
40 | |
39 |