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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Sammy_voi
Frequent Visitor

sum total except for repeating rows

Hello community,

I need a measure that sums follower_count and following_count (VALUE Column). I use some simple measures for this. However, this calculation should not calculate the repeating rows in the userid column.

for example, I'm using this: User Reached = Sum(Single[follower_count]) + SUM(Single[following_count])

Thanks,Untitled-1.jpg

 

1 ACCEPTED SOLUTION
FreemanZ
Super User
Super User

hi @Sammy_voi 

try like:

Measure = 
VAR _table =
SUMMARIZE(
     Single,
     Single[userid],
     Single[follower_count],
     Single[following_count]
)
RETURN
SUMX(
     _table, 
     Single[follower_count]+Single[following_count]
)

View solution in original post

2 REPLIES 2
FreemanZ
Super User
Super User

hi @Sammy_voi 

try like:

Measure = 
VAR _table =
SUMMARIZE(
     Single,
     Single[userid],
     Single[follower_count],
     Single[following_count]
)
RETURN
SUMX(
     _table, 
     Single[follower_count]+Single[following_count]
)

Thank you @FreemanZ perfectly fitted.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.