View Single Post
  #2   Report Post  
CarlosAntenna
 
Posts: n/a
Default

=IF(ISBLANK(A12),"",IF(A12+7<TODAY(),A12+7,""))

--Carlos

"Walter" wrote in message
...
I have a worksheet with a date column for the week ending date. I want

this
to automaticaly enter the date and calculate the row when the date meets
today's date. I have the following formula, which works to 1 row below

last
week's ending date and then it gives #VALUE.
=IF(A12+7<TODAY(),A12+7,"")
I tried nesting an OR function to test for blank cells but still get the
#VALUE.
=IF(OR(A12="",A12+7TODAY()),"",A12+7)
How can I eliminate this?
--
Thanks for your help,
Walter