I have calculated column Importance_Weight of which I need to create measure that sum questions for related line number.
Importance_Weight = (ColumnX * Average(ColumnY) )/100
Calculated column values for each question is correct as below but when aggrigated by line number the sum is wrong as blow
I used following measure to calculate sum of questions (q) i.e. L1
LT_WeightPerQuestion:=SUMX(DimQuestion, AVERAGE(Survey[Importance_Weight]))
Thanks in advance.

