How to fix IF and AND statement

Sean15

Well-known Member
Joined
Jun 25, 2005
Messages
721
Office Version
  1. 2010
Platform
  1. Windows
Hello:

The formula below is returning "OK" for empty cells in column B and column D. I assume it's because Excel recognizes empty cells as zero.
How can formula be corrected to return "" for empty cells in column B and D? Thank you for your help.

IF(AND(B3<=55,D3<=11),"OK", "No")

Regards,
Sean
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Code:
=IF(AND(B3="",D3=""),"",[COLOR=#333333]IF(AND(B3<=55,D3<=11),"OK", "No"))[/COLOR]
 
Upvote 0
Yes, it's checking to see that there are 2 numbers in those cells.
 
Upvote 0

Forum statistics

Threads
1,225,761
Messages
6,186,890
Members
453,383
Latest member
SSXP

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