OR(AND(Conditional Formatting Challenge

ChuckRobert

Board Regular
Joined
Feb 26, 2009
Messages
64
I've been unable to figure out the correct way to detail a conditional format. In my project -
- D61 is linked to another worksheet to obtain a name
- E61 is blank unless a job assignment is selected for that person (list data validation)
- Range D279:D310 displays the names of those with special circumstance that may affect what assignment they may be given.
- Range D364:D533 displays the names who are not available on a given day.

For conditional format 1 to display yellow, I need it to check that

- D61<>"" - (Name is Displayed) - True
- E61="" - (No assignment is selected Yet) - True
- The name in D61 is not listed in D364:D533 - (The individual is not gone today) - True
OR
- The name in D61 is not listed in in D364:D533 - (The individual is not gone today) - True
- The name in D61 is listed in D279:D310 - (Individual has special circumstance that may affect assignment) - True

Here is where I'm at now:

=OR(AND(D61<>"",E61="",COUNTIF(D$364:D$533,D61)<1),COUNTIF(D$364:D$533,D61)<1,COUNTIF(D$279:D$310,D61)>=1)

The problem seems to be in referencing the COUNTIF(D$364:D$533,D61)<1), as even if the name in D61 is not listed in D$364:D$533, it does not display as True and turn the cell yellow when the other conditions are met. D$364:D$533, and D$279:D$310 are linked from my calendar products and are in "General" format. Can anyone offer a suggestion?
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
=OR(AND(D61<>"",E61="",COUNTIF(D$364:D$533,D61)<1),COUNTIF(D$364:D$533,D61)<1,COUNTIF(D$279:D$310,D61)>=1)

I don't really understand this. You have 4 conditions, let's call them A, B, C and D. Your formula effectively says

=OR(AND(A,B,C),C,D)

The AND is redundant because C being TRUE will make the OR TRUE so your formula can be shortened to

=OR(C,D)

i.e.

=OR(COUNTIF(D$364:D$533,D61)<1,COUNTIF(D$279:D$310,D61)>=1)

....but I assume that isn't what you really want. for an AND to be TRUE every element must be TRUE, any single test within an OR makes the OR TRUE, is that how you expect it to be?
 
Upvote 0
Barry,
Thanks for help! This works great.

=OR(AND(D61<>"",E61="",COUNTIF(D$364:D$533,D61)<1),COUNTIF(D$279:D$310,D61)>=1)


Chuck
 
Upvote 0

Forum statistics

Threads
1,215,692
Messages
6,126,228
Members
449,303
Latest member
grantrob

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