I am trying to create a formula that converts a percentage grade to a letter grade but the letter grade cell does not seem to recognize the percentage formula and returns "F" no matter what. Here are the formulas I am using:
Percentage Grade:
=SUMPRODUCT((G5:T5 = "Yes") * G1:T1) / SUMIF(G5:T5, "<>N/A", G1:T1)
Letter Grade:
=IF(E5>=90,"A",IF(E5>=80,"B",IF(E5>=70,"C",IF(E5>=60,"D","F"))))
Could someone help me fix this? Thank you in advance
Percentage Grade:
=SUMPRODUCT((G5:T5 = "Yes") * G1:T1) / SUMIF(G5:T5, "<>N/A", G1:T1)
Letter Grade:
=IF(E5>=90,"A",IF(E5>=80,"B",IF(E5>=70,"C",IF(E5>=60,"D","F"))))
Could someone help me fix this? Thank you in advance