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

Shape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.

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

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

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

Join us as experts from around the world come together to shape the future of data and AI!
At the Microsoft Analytics Community Conference, global leaders and influential voices are stepping up to share their knowledge and help you master the latest in Microsoft Fabric, Copilot, and Purview.
️ November 12th-14th, 2024
 Online Event
Register Here

thank you @amitchandak 
that one working as expected

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

Helpful resources

Announcements
November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.