jayjay123

New Member
Joined
Jun 3, 2021
Messages
45
Office Version
  1. 365
Platform
  1. Windows
Hi Experts of Mr Excel.com,

Please let me know if I'm not making sense.
Heres a sample.
  • Action 1 - 4 will result in either a "Pass" or "Fail"
  • Overall Outcome = Fail (If 70% or below, or if Action 3 results in a Fail)
  • Overall Outcome = Pass (if above 70%, and if Action 3 results in a Pass)
  • Action 3 - Fail results in automatic Overall fail
  • Also, if the template is not yet filled in for Action 1-4 (Pass/Fail), I would like the Overall Outcome to be blank
Can anyone design a formula for this? I tried the following:
=IF(OR(ISBLANK(H43:H44)," ",IF(OR("Fail" = K34:H44),"Fail","Pass"))

H43:H44 = (Pass:Fail) cells

1647934431699.png


Thanks in advanced!
 

Excel Facts

What is the last column in Excel?
Excel columns run from A to Z, AA to AZ, AAA to XFD. The last column is XFD.
I cannot say I follow your logic completely, but I see two issues with your formula, namely these parts:
ISBLANK(H43:H44)
and
"Fail" = K34:H44

The issue is ISBLANK and = are not array functions.
Try using the COUNTBLANK and COUNTIF functions instead to return a count of values in that range that are blank or equal to fail, i.e.
IF(COUNTBLANK(H43:H44)=2,...
and
IF(COUNTIF(K34:K44,"Fail")>0,...
 
Upvote 0
Sorry! i will try and explain again...
What formula can I use for the Overall Outcome...
- Over 70% = Pass
- Less than 70% = Fail or if Action 3 is Fail
- How do I make this cell blank until Action 1-4 has been selected with either Pass/Fail

Thanks!
 
Upvote 0
Hi,

Your question is still a bit unclear, also, what if it's Exactly 70% ?
Because you say:

- Over 70% = Pass
- Less than 70% = Fail or if Action 3 is Fail

Assuming >= 70 % is Pass

Book3.xlsx
ABC
1out of 25
2125Pass
3225Pass
4315Fail
5425Pass
690.00%Fail
Sheet1064
Cell Formulas
RangeFormula
C2:C5C2=IF(B2/25>=0.7,"Pass","Fail")
B6B6=SUM(B2:B5)/100
C6C6=IF(COUNTA(C2:C5)=4,IF(OR(B6<0.7,C4="Fail"),"Fail","Pass"),"")
 
Upvote 0

Forum statistics

Threads
1,214,588
Messages
6,120,409
Members
448,959
Latest member
camelliaCase

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