Conditional formatting - with multiple conditions

kiwikiki718

Board Regular
Joined
Apr 7, 2017
Messages
80
Office Version
  1. 365
Platform
  1. Windows
Hello is there a way to assign 3 conditions that must be true in order for a cell to turn a color.

Ex. If F5 is blank and F1 is not blank and F3 does not equal “Pass”

I want to be able to enter this formula as a new rule so that a cell will highlights if true.

How should that condition be created?
 

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
yes, in your conditional formatting formula use:
Excel Formula:
=AND(ISBLANK(F5),ISBLANK(F1)=FALSE,F3<>"PASS")
 
Upvote 1
Another option
Excel Formula:
=and(f5="",f1<>"",f3<>"Pass")
 
Upvote 0
yes, in your conditional formatting formula use:
Excel Formula:
=AND(ISBLANK(F5),ISBLANK(F1)=FALSE,F3<>"PASS")
Thank u this worked but since F1 has a formula in it, it is making the statement false. Is there a way to indicate is not a number? Instead of is not blank for F1?
 
Upvote 0
Try the formula I posted, that is designed to work with cells that contain a formula.
 
Upvote 0
Thank u this worked but since F1 has a formula in it, it is making the statement false. Is there a way to indicate is not a number? Instead of is not blank for F1?
i would have suggested the formula by Fluff but you said Blank. A formula is not Blank. :)
 
Upvote 0

Forum statistics

Threads
1,215,426
Messages
6,124,828
Members
449,190
Latest member
rscraig11

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