Assignment i Dc 2
Assignment i Dc 2
Using nested if else find find out the Corresponding grade of the
students –
Score Grade
Above 550 A
550>S≥500 B+
500>S≥400 C
Below 400 Fail
SOLLUTION
This is the worksheet made with the data of 6 students inside it :
Student Score Grade
Peter 377 Fail
Samuel 504 B+
Ruth 466 C
Diana 248 Fail
Antony 591 A
Mary 304 Fail
Grade(C2)=
=IF(B2>=550,"A",IF(B2>=500,"B+",IF(B2>=400,"C",IF(B2<=400,"Fail"))))