0% found this document useful (0 votes)
4 views

Assignment i Dc 2

Uploaded by

uid26879
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

Assignment i Dc 2

Uploaded by

uid26879
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2

Consider the following table –

Student Score Grade


Peter 377
Samuel 504
Ruth 466
Diana 248
Antony 591
Mary 304

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"))))

You might also like