IF/AND/OR Assistance

SFCChase

Board Regular
Joined
Jun 25, 2013
Messages
107
Office Version
  1. 2016
Platform
  1. Windows
Probably an easy fix, but I've been staring at this for way too long.

EXAM 1EXAM 1 RETEST AEXAM 1 RETEST BFINAL SCORE
8080
728076
72728076
72727272

I need a formula in cell D2 that will read A2.
If A2 is >=76 it will report the value of A2
If A2 is <76 it will read cell B2. If B2 is >=76 it will report "76" as a value (no matter the score).
If A2 is <76 it will read cell B2. If B2 is <76 it will read cell C2. If C2 is >=76 it will report "76" as a value (no matter the score).
If A2, B2, and C2 are all <76 it will report the value of A2.

I know there's probably an easy nested IF(AND(OR)) Function out there, but I can't get it to return a value based off the results of Cell C2.

All assistance is appreciated.
 

Excel Facts

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
Don't need any AND's / OR's, just progressive IF's.
Excel Formula:
=IF(A2>=76,A2,IF(B2>=76,76,IF(C2>=76,76,A2)))
For what it's worth, it's best wait around 24 hours before replying to your own thread to bump it to the top. A lot of people (myself included) tend to look at threads that have no replies. By replying to your own thread you are inadvertently removing it from the unanswered threads list and reducing your chance of getting your question answered.
It was only by chance that I had already opened your thread before you bumped it and was working on an answer, otherwise you may have been waiting much longer for someone to look at it.
 
Upvote 0
Another option
Excel Formula:
=IF(OR(A2>=76,MAX(B2:C2)<76),A2,76)
 
Upvote 0

Forum statistics

Threads
1,215,219
Messages
6,123,691
Members
449,117
Latest member
Aaagu

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