Forum Discussion
Sammy_voi
3 years agoFrequent 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,
hi Sammy_voi
try like:
Measure =VAR _table =SUMMARIZE(Single,Single[userid],Single[follower_count],Single[following_count])RETURNSUMX(_table,Single[follower_count]+Single[following_count])