Reading Cell Function???

G

Guest

I have this formula in cell I: =IF(H228>K228,"Past TAT","")

I Have this formula in cell H: =IF(OR(Y228<>"",W228=""),"",TODAY()-W228)

Here is the problem: Even though cell H is blank because no date has yet
been added to cell W, cell I keeps showing "Past TAT." It seems that the
cell I sees something in cell H, but it is blank other than the formula that
is not seen.

When I hit the delete key while in cell H, the Past TAT in cell I
disappears, however, then I hit the space bar and the Past TAT reappears.
But now there is no number or formula in cell H. So I am not sure what is
going on.
 
B

Bob Phillips

This is because the cell is not empty, and your test does not cater for
this.

Try this

=IF(AND(LEN(H228)<>0,H228>K228),"Past TAT","")

--

HTH

RP
(remove nothere from the email address if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top