Delete Cell Function

R

roy.okinawa

I currently have column H, Days In Shop, calculating the days from current
date to column W, Date Received: =Today()-W31

What I need is a formula that will also delete/blank/terminate that cell in
column H once a date is entered in column Y.

H W Y

3 11/20/2005
11/20/2005 11/23/2005

Thanks.
 
R

roy.okinawa

No date goes in this cell. Only the cumulative days between today's date and
the date in column W. See the first post.
 
M

Max

Think what was suggested earlier by Gary's Student should work.
Give it another go.

Try in H31, and copy down
: =IF(Y31="",TODAY()-W31,"")

If you want to check for "nothing" in col W as well,
then one way is to put it in H31 as:
=IF(OR(Y31<>"",W31=""),"",TODAY()-W31)
and copy down
 
Top