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.

[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]Semester 1 math[/TD]
[TD="align: center"]Semester 2[/TD]
[TD="align: center"]Grade Validated?[/TD]
[/TR]
[TR]
[TD]Student 1[/TD]
[TD]D[/TD]
[TD]A[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Student 2[/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Student 3[/TD]
[TD]F[/TD]
[TD]D[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
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.

[TABLE="width: 500"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]Semester 1 math[/TD]
[TD="align: center"]Semester 2[/TD]
[TD="align: center"]Grade Validated?[/TD]
[/TR]
[TR]
[TD]Student 1[/TD]
[TD]D[/TD]
[TD]A[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Student 2[/TD]
[TD]A[/TD]
[TD]B[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Student 3[/TD]
[TD]F[/TD]
[TD]D[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]


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,223,888
Messages
6,175,207
Members
452,618
Latest member
Tam84

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