Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
mnvrma
Partner - Contributor III
Partner - Contributor III

Error With Sum Function

I want to calculate Sum of "Actual Weighted Score" according to Year, Name

But It's coming 166.75 and 91 instead of 27.25 and 15.25 .

If we Sum "Actual Weighted Score" by year, Name. It should be 7.5+1.5+8.75+9.5=27.25 and 2.75+0.45+5.75+0.28+5.5=11.

Screenshot (37).png

 

Load
Year,
Name,
Sum("Actual Weighted Score") as "Total Of Actual Weighted Score"
Resident Calc
Group By Year,Name;

2 Replies
Kushal_Chawda

@mnvrma  what is the expression used for "Actual Weighted Score"?

mnvrma
Partner - Contributor III
Partner - Contributor III
Author

@Kushal_Chawda 

I have calculated  "Actual Weighted Score" :

Load
Year,
Name,
QuestionGroup,
"Sum Of Actual Score"*Weightage as "Actual Weighted Score"
Resident Calc;