View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
Jacob Skaria Jacob Skaria is offline
external usenet poster
 
Posts: 8,520
Default Using Dates with true and false statements

=IF(AND(AI4<"",AK4="",TODAY()-AI45),"Yes","")

If this post helps click Yes
---------------
Jacob Skaria


"Princess V" wrote:

Sorry, I posted the second half of my question in an additional post right
under the original.

Is there a way that I can take this formula one step further to say:

If Today minus AI4 is 5 and column AK is blank....then return a Yes in the
Overdue Column?




"Eduardo" wrote:

Hi,

=if(AI4="","",IF(TODAY()-AI45,"Yes",""))

"Princess V" wrote:

I have a spreadsheet that has a column that contains the date a particular
item was shipped.

I want to be able to identify (not with colours) those rows in which todays
date minus the date in the cell is greater then 5 days. If so, I want to
enter the value "Yes" in another column (title of column is Overdue because
its been greater then 5 days).

I have used: =IF(TODAY()-AI45,"Yes","")

The problem is, if the date column is blank, it still returns a Yes value.

How can I avoid this? I want it to either remain blank, or state No.

Help!