Another Condtional Format Question

R

Rollin_Again

Can anyone tell me how to set up the following conditonal format

IF cell A7 <= C7 AND either B7 < D7 or D7 - B7 > 0 THEN format th
cell green.


Thanks,
Rolli
 
D

Debra Dalgleish

Select the cell(s) that you want to format
Choose Format>Conditional Formatting
From the first dropdown, choose Formula Is
In the formula box, type: =AND($A7<=$C7,$B7<$D7)
Click the Format button
 
Top