Help with Conditional Formating and IF (or any other formula)

edge37

Board Regular
Joined
Sep 1, 2016
Messages
57
Office Version
  1. 2021
Platform
  1. Windows
Hi, please help me on the following. Given the example table of grades:
STUDENTMATHPHYSICSCHEMISTRYBIOLOGYENGLISHSOCIOLOGYPHILOSOPHYPSYCHOLOGYSPANISHACCOUNTINGRELIGIONP.E.INFORMATICSAVERAGEHONOR ROLL
1Justina Leask9191918498919191919191919191.00
2Russell Gomez9191919191919191919496919192.00
3Doria Venegas7088787878787878787878787878.15
4Joaquin Cargle95959583
95959595959595959994.38
5See Ball8989898679797979797979919884.23

<tbody>
</tbody>

In the honor roll column at the end I want to determine who is OUTSTANDING (those who have an average >= 91, and have NO grade lower than 91); or DISTINGUISH (those who also have an average >= 91, but they have a a grade less than 90.5 in their notes). In the table we have students 1, 2, and 4 with grades >= 91, Student 2 have all notes equal or higher than 91, so he's OUTSTANDING, but 1 and 4 have each one note from 79.5 to 90.4 (in red) so they are DISTINGUISH. I can determine with conditional formating to highlight the note that is less than 90.5 but my question is: Can I use IF (or any other formula) to fill the Honor Roll column, based on the >=91 average and the note less than 90.5 in their grades I highlighted, with either OUTSTANDING, DISTINGUISH an empty space for those who don't apply?

Thanks for your help
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Hello, try this: (assumes data including headings starting in cell A1)

=IF(MIN(B2:O2)>=91,"OUTSTANDING",IF(AND(MIN(B2:N2)<90.5,O2>=91),"DISTINGUISH",""))
 
Upvote 0
Working like a charm. You are great, mate, thanks.
 
Upvote 0

Forum statistics

Threads
1,216,172
Messages
6,129,292
Members
449,498
Latest member
Lee_ray

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