Forum Discussion
Anonymous
4 years agoNot applicable
Weighted Average - Large Dataset
Hi, I am new to power BI. Is “Summarize Table” a good option for a large data set approx(60 million rows)? Reason why I need this functionality is that I use "Weighted average" for all my Aggr...
amitchandak
Super User
4 years agoAnonymous , You formula should avoid row calculation. You should have measure like
Divide(Sum(Table[A]) , Sum(Table[B]))
or
Divide(Sum(Table[A]) , count(Table[A]))