Thanks JW,
Worked great!
"JW" <(E-Mail Removed)> wrote in message
news:fe042553-1b1c-42ac-b1cf-(E-Mail Removed)...
On May 28, 1:17 pm, "HH" <deerl...@bellsouth.net> wrote:
> My formula in E4 is: =IF(B4<TODAY(),SUM(25+H4),"")
>
> Works great when I put a date in B4. But - if I accidently put a date in
> B4
> and then delete it, the value stays in E4.
>
> How do I get the value to disappear if I delete the date?
>
> Hank
=IF(AND(B4<TODAY(),NOT(ISBLANK(B4))),25+H4,"")
-or-
=IF(OR(B4>=TODAY(),ISBLANK(B4)),"",25+H4)
|