Multiple Criteria Conditional Formatting

Velven

New Member
Joined
Nov 30, 2017
Messages
37
Hello Once again !

My mind doesn't seems to function very well with conditional formatting criteria.

ABCD
1RequestDeBoSal
2WitYes
3RedpYes
4Max
5Unl
6DaiYes

<tbody>
</tbody>

My logic will be the following.
On Column B:B
If(D:D"yes",A:A="<>Wit",B:B<>"")

Means D:D is Yes , A:A is not Wit , B:B is not blank , I want to highlight B:B.

Anything wrong with my formula ?
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Get your formula to return the required TRUE/FALSE in another column before using CF

Put this formula in cell E1 and copy down
=AND(D1="Yes",B1<>"",A1<>"Wit")

Does it give you the correct results?
- it does what you asked for :)
- if not, correct the formula

When the formula is correct, select the whole of column B and apply the formula in CF
- check the results and delete formula in column E
 
Last edited:
Upvote 0
Thank you so much !

I actually used the same And formula in the exact same way just now. But it wasnt working. I must've highlighted the wrong column :ROFLMAO:
 
Upvote 0
Hello !

Is it possible for me to do a not equals to Named range ? with that formula ?

Such as =AND(D1="Yes",B1<>"",A1<>"Fill in named range")
 
Upvote 0
Try this

=AND(D1="Yes",B1<>"",COUNTIF(MyNamedRange,A1)=0)

Assumes your named range
- is in a single column or row
- and contains values such as "Wit" "Redps" "Max" "Unl" "Dai"
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,063
Messages
6,122,935
Members
449,094
Latest member
teemeren

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