You could use this formula instead I guess...
=IF(AND(B4<TODAY(),B4<>""),SUM(25+H4),"")
Rick
> My formula in E4 is: =IF(B4<TODAY(),SUM(25+H4),"")
>
[quoted text clipped - 4 lines]
>
> Hank
> My formula in E4 is: =IF(B4<TODAY(),SUM(25+H4),"")
>
[quoted text clipped - 4 lines]
>
> Hank
=IF(AND(B4<TODAY(),NOT(ISBLANK(B4))),25+H4,"")
-or-
=IF(OR(B4>=TODAY(),ISBLANK(B4)),"",25+H4)
HH - 28 May 2008 19:09 GMT
Thanks JW,
Worked great!
On May 28, 1:17 pm, "HH" <deerl...@bellsouth.net> wrote:
> My formula in E4 is: =IF(B4<TODAY(),SUM(25+H4),"")
>
[quoted text clipped - 5 lines]
>
> Hank
=IF(AND(B4<TODAY(),NOT(ISBLANK(B4))),25+H4,"")
-or-
=IF(OR(B4>=TODAY(),ISBLANK(B4)),"",25+H4)