I am creating a simple spreadsheet to assess some student work. I am using a nested if statement to evaluate the totals in 3 cells and display a grade.
The problem is that it does not the evaluate the final statement and I cannot figure out why. The first two display with no problems. I have checked that the cells referred to in the formula display the correct totals. Can anyone suggest anything I have missed?
The problem is that it does not the evaluate the final statement and I cannot figure out why. The first two display with no problems. I have checked that the cells referred to in the formula display the correct totals. Can anyone suggest anything I have missed?
Code:
=IF(AND(C50<10,D50<=30,E50<=51),"Working towards a Pass",IF(AND(C50>=10,D50<30,E50>=0),"PASS",IF(AND(C50=10,D50>=30,E50>=0),"MERIT",IF(AND(C50=10,D50=30,E50=51),"DISTINCTION"))))