Using Excel to Validate Grades

EVargas

New Member
Joined
Aug 9, 2017
Messages
1
Hi there,
I am trying to create a formula in which a passing grade (A, B, or C) in a second semester math class validates a failing score (D or F) from the first semester. I have grades in two separate columns and want to add an additional column that checks to see if the semester 2 grade validates semester 1. So, student 1 would be validated, student 2 didn't need to be validated, and student 3's grade should not be validated.

Semester 1 mathSemester 2Grade Validated?
Student 1DA
Student 2AB
Student 3FD

<tbody>
</tbody>
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
Hi there,
I am trying to create a formula in which a passing grade (A, B, or C) in a second semester math class validates a failing score (D or F) from the first semester. I have grades in two separate columns and want to add an additional column that checks to see if the semester 2 grade validates semester 1. So, student 1 would be validated, student 2 didn't need to be validated, and student 3's grade should not be validated.

Semester 1 mathSemester 2Grade Validated?
Student 1DA
Student 2AB
Student 3FD

<tbody>
</tbody>


D2 = IF(AND(OR($B2="D",$B2="F"),OR($C2="A",$C2="B",$C2="C")),"Yes","No")
 
Upvote 0
Welcome to Mr Excel

Try something like this
Formula in D2 copied down
=IF(OR(B2={"A";"B";"C"}),"No need",IF(OR(C2={"A";"B";"C"}),"Validated","Not validated"))

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,215,365
Messages
6,124,511
Members
449,166
Latest member
hokjock

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top