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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. 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])

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

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

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

thank you @amitchandak 
that one working as expected

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

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors