Nested formula

blandreth

Board Regular
Joined
Jan 18, 2018
Messages
56
Office Version
  1. 365
I'm looking for a formula that will provide the following result:

If b9= selection "a","b",or "c" and b11 is populated then result would be "ok to save"

If b9= selection "D", then look for B20 and if it is populated the result would be "ok to save"

otherwise result would be "not ready to save"

for example - if b9="a" and b11 was empty result would be "not ready to save" - if b9="a" and b11 is populated then result would be "ok to save"

for example - if b9="d" and b20 was empty result would be "not ready to save" - if b9="d" and b20 is populated then result would be "ok to save"

Running Excel 2016

Any suggestions would be greatly appreciated.

Thanks,
Brian
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Code:
=IF(AND(OR(B9="a",OR(B9="b",B9="c")),NOT(ISBLANK(B11))),"ok to save","not ready to save")

try that
 
Upvote 0
Try this formula: =IF(AND(OR(B9="a",B9="b",B9="c"),B11<>""),"OK to save",IF(AND(B9="d",B20<>""),"OK to save",""))
 
Upvote 0
Modified from Post #3 : =IF(AND(OR(B9="a",B9="b",B9="c"),B11<>""),"OK to save",IF(AND(B9="d",B20<>""),"OK to save","Not ready to save"))
 
Upvote 0
Glad to help. :) I was a drummer in my younger days!!!!
 
Upvote 0
Hi,

Same formula, just a little shorter:

Code:
=IF(OR(AND(OR(B9={"a","b","c"}),B11<>""),AND(B9="d",B20<>"")),"OK to save","Not ready to save")
 
Upvote 0

Forum statistics

Threads
1,215,527
Messages
6,125,337
Members
449,218
Latest member
Excel Master

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