"T. VALKO" -
Below is the result I am trying to achieve:
IF B$ IS <TODAY AND C$=NO, THEN FILL A$ AS RED;
IF B$ IS =>TODAY AND C$=NO, THEN FILL A$ AS GOLD;
IF C$=YES, THEN FILL A$ AS GREEN;
Condition ONE: Column A [cell] is filled RED when Column B [cell] entered
date is before the current date AND Column C [cell] is NO;
Condition TWO: Column A [cell] is filled GOLD when Column B [cell entered
date is either the current or a future date AND Column C [cell] is NO;
Condition THREE: Column A [cell] is filled GREEN when Column C [cell] is
YES;
[NOTE: Column B data has no bearing or impact on Condition THREE]
Hope this explains it a little more clearly and I definitely hope you can
help me out!
====================================================
T. Valko said:
Ooops! Typos!
C1 = fill with color if A1 = a date <=today and C1 = no
=AND(COUNT(A1),A1<=TODAY(),C1="no")
All references to C1 should be B1.
--
Biff
Microsoft Excel MVP
Try this...
A1 = some date
B1 = yes or no
C1 = fill with color if A1 = a date <=today and C1 = no
Select cell C1
Goto the menu Format>Conditional Formatting
Select the Formula Is option
Enter this formula in the little box to the right:
=AND(COUNT(A1),A1<=TODAY(),C1="no")
Click the Format button
Select the Patterns tab
Select the color of your choice
OK out
--
Biff
Microsoft Excel MVP
I want to use two different cells in a single row (one a date-formatted
cell
& one a "Yes/No" text value cell) to display a cell fill color in a
third
cell - based on the conditions (e.g., date is <= today and text is
"no" -
filling third cell with red) present;
How can I do this?
Txs!