TODAY() in an IF AND function

J

Jennifer E

Hi,

I'm trying to create an IF AND Today() function. The difficulties I'm
having with this is that when I enter the TODAY() portion of the function the
result is the either the units that have scheduled a date, but the date is
both before and after TODAY(), or it's the units that have not scheduled a
date. I cannot get the result of the dates that have already occurred or
are equal to TODAY().

My current formula is:

=IF(AND($C13=$B$13,$BV13>TODAY()),$CJ13,"")

Thanks so much:)

Jennifer
 
T

tompl

$BV13>TODAY() limits the results to only the values in column CJ that have a
future date in column BV. What exactly do you want?

Tom
 
T

tompl

If what you want is to return a value only if column C = column E and a date
(any date) has been entered into column BV, then this formula might work for
you:
=IF(AND($C13=$B$13,isnumber($BV13)),$CJ13,"")
or
=IF(AND($C13=$B13,isnumber($BV13)),$CJ13,"")

Tom
 

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