Conditional Formula with Mult Conditions and Mult returned Values (Text)

QueTeam1

New Member
Joined
Apr 8, 2016
Messages
2
Hello, So I am a Newbie to this forum and have read several of the post but have not been able to find the answer to my issue.
I am trying to create an IF/AND formula to score a students' assessment

Student is assessed in three fields and received one score for each field.
Final score is a compilation of the three individual scores.
These are stored in a spreadsheet.

If the result in cell A2>=70, B2>=70 and C2>=72, the student gets a mark of "High Pass"

If the result in cell A2>=50, B2>=50 and C2>=50, the student gets a mark of "Pass"

Anything else gets a mark of "No Pass"

below is what I tried, but received a #VALUE! error

=IF(AND($A2>=70,$B2>=70,$C2>=72),"High Pass"," "),IF(AND($A2>=50,$B2>=50,$C2>=50),"Pass","No Pass")

Help, Please.
 

Excel Facts

Copy PDF to Excel
Select data in PDF. Paste to Microsoft Word. Copy from Word and paste to Excel.
Hi
Welcome to the board

Try:

=IF(AND($A2>=70,$B2>=70,$C2>=72),"High Pass",IF(AND($A2>=50,$B2>=50,$C2>=50),"Pass","No Pass"))
 
Upvote 0

Forum statistics

Threads
1,223,243
Messages
6,170,967
Members
452,371
Latest member
Frana

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