An IF(ISBLANK question
I have a spreadsheet I use to track my sons school grades (we homeschool) but have the problem that the cell where the overall daily grade sits, requires that there be something in all the cells or it gives me the RED TRIANGLE of death. Here’s the entry used.
IF(J160=15,"A",IF(AND(J160>12.667,J160<15),"B",IF(AND(J160>10.334,J160<12.65),"C",IF(AND(J160>8.001,J160<10.334),"D",IF(AND(J160>5.668,J160<8.001),"E",IF(J160<5.668,"F","000"))))))
And an image of the cells in question.
I thought of using the ISBLANK function but apparently not correctly. It should be all one line, not divided.
IF(ISBLANK(G174:G178),"--—",IF(J171=15,"A",IF(AND(J171>12.667,J171<15),"B",IF(AND(J171>10.334,J171<12.65),"C",IF(AND(J171>8.001,J171<10.334),"D",IF(AND(J171>5.668,J171<8.001),"E",IF(J171<5.668,"F","000"))))))))
It works with the score column, but not the total grade.
IF(ISBLANK(G174),"-----",(H174−I174)÷H174)
iPad, iPadOS 16