2

I have a fixed cell $I$1 containing the current date. I have col D whose cells each contain a date. I also have col F which contains a percentage (there is one of these wherever corresponding col D cell has a date).

The conditional formatting I want is: If date in col D is before date in $I$1 AND percentage in corresponding cell of col F is greater than 0, then set format.

Based on previous answers on this site, I've tried the "=AND(AND(...;...);...)" method as well as the "multiplication method". Any hints from an expert (since I'm, obviously, not one!)?

4

2 に答える 2

3

これでうまくいくはずです-たとえば、1行目のセルに対してこの書式設定を実行したいとします。

=And($D1 < $I$1, $F1 > 0)
于 2012-12-12T15:41:57.190 に答える
2

I have tried it along the lines you suggest and it seems to work OK:

=AND(D1<$I$1;E1>0)

Is this what you want?

enter image description here

于 2012-12-12T15:46:20.773 に答える