Formula Query (University Results Spreadsheet)

ExcelNew7

New Member
Joined
Dec 21, 2022
Messages
25
Office Version
  1. 365
Platform
  1. MacOS
Hi,

Please may someone write a formula for me for the following?

In cell B17, I have a percentage. It is calculated by a sum function of 10 percentages. In cell C17 I want it to say '1st' if the percentage is 70% or higher, I want it to say '2:1' if the percentage is 60-70%, I want it to say 2:2 if the percentage is 50-60%, I want it to say '3rd' if the percentage is 40-50%, I want it to say 'Fail' if the percentage is less than 40%, unless the cell is 0% in which case I want it to say 'Result Pending'. The table where the data is is A6:K15. If for example A6 is filled out, but B6:K6 is empty, I want C17 to read ‘Result Pending’ regardless of what percentage is displayed in B17, and same for if A7 is filled out but B7:K7 is empty etc. for all rows 6-15. This must be a single formula that I could put in cell C17 please.

Thank you :)
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
Check this and revert -

Excel Formula:
=IFS(OR(Counta(B6:K6)=0,Counta(B7:K7)=0),"Result Pending",B17>=0.7,"1st",B17>=0.6,"2:1",B17>=0.5,"2:2",B17>=0.4,"3rd",And(B17<0.4,B17<>0),"Fail",True,"Result Pending)
 
Upvote 0

Forum statistics

Threads
1,215,247
Messages
6,123,847
Members
449,129
Latest member
krishnamadison

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