Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
mrslyfox911
Advocate III
Advocate III

Distinct sum

Hi,

 

Please help figureout how to approach measure which will return distincted summary for the column values

Example

USR_IDTRNXEvents
10090016
10090026
10090036
10090046
10280011
10280021

 

Measure should return distinct sum of Event column grouped by USR_ID

mean expected result of measure = 6+1 = 7

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@mrslyfox911 , Try a measure like

 

Sumx(Distinct(Table[Events]), [Events])

 

or

 

sumx(summarize(Table, Table[User_id], Table[Events]) , [Events])

View solution in original post

4 REPLIES 4
Mahesh0016
Super User
Super User

Mahesh0016_0-1670579882856.png

Hello @mrslyfox911 ,

I hope above solutions is helpful for you.

 

thank you!

Mahesh Patel

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

amitchandak
Super User
Super User

@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])

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

Check out the September 2024 Power BI update to learn about new features.

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

Find out what's new and trending in the Fabric Community.