Forum Discussion
Xeryar
Dec 22, 2021Brass Contributor
Scorecard
I am trying to mimic a formula that my company uses for year end evaluation Each question has score of 1 to 5 .First section of questions is worth 50% and other two 25% each . The final score is out...
- Dec 23, 2021
Based upon your tables, either SUM or AVERAGE could be used.
= SUM(job)/6 + SUM(team,leadership)/16 = (AVERAGE(job) + AVERAGE(team,leadership)) / 2The weights (numbers shown in cyan) will change it the number of questions in a section changes.
Xeryar
Dec 23, 2021Brass Contributor
NikolinoDE This is what i am trying to build the final score should be out of 5 points total
PeterBartholomew1
Dec 23, 2021Silver Contributor
Based upon your tables, either SUM or AVERAGE could be used.
= SUM(job)/6 + SUM(team,leadership)/16
= (AVERAGE(job) + AVERAGE(team,leadership)) / 2The weights (numbers shown in cyan) will change it the number of questions in a section changes.