I need to confiruge an average score between mulitple rows. The row value are determined by this formual
=IF([Question 1]@row = "Strongly agree", "5", IF([Question 1]@row = "Somewhat agree", "4", IF([Question 1]@row = "Neither agree nor disagree", "3", IF([Question 1]@row = "Somewhat disagree", "2", IF([Question 1]@row = "Strongly disagree", "1")))))
Therefore, I think I need to use a value fuction for it to add these as numbers. What formual can I use to get an average for columns 1 Score, 2 Score, 3 Score, and 4 Score?