Hello,
I use below formula to detect whether my student pass or fail in exams..
I use only 1 condition only to detect it..that is when a student get the mark
below 40 , they will get FAIL..
The problem is , recently many of my people absent and dont sit for the exams..
So i cant put them on my database.. i mean their result..
But I have to put their name in my list..and after thinking..i want their result to be ABSENT
So how i modify below to show ABSENt when a student didnt sit for their exams..
Thanks
This is the formula
=IF(OR(ISBLANK(L7),ISBLANK(N7),ISBLANK(P7),ISBLANK(R7),ISBLANK(T7)),””,IF(OR(L7<40,N7<40,P7<40,R7<40,T7<40),"FAIL","PASS"))
Thanks