What am I doing wrong in this IF formula?

Nickit
✭✭
I need the total score % reflected in the column, unless the score for Q3 is 0.
=IF(Q3 Score = 0, 0, {=SUM([Q1 Score]@row:[Q10 score]@row)})
What am I missing?
Best Answer
-
=IF([Q3 Score]@row = 0, 0, SUM([Q1 Score]@row:[Q10 score]@row))
Answers
-
=IF([Q3 Score]@row = 0, 0, SUM([Q1 Score]@row:[Q10 score]@row))