Figure future date

  • Thread starter Thread starter J
  • Start date Start date
J

J

Is it possible to have cell A1 with todays date and make B1 add 1 week to
that date and display it?
 
Is it possible to have cell A1 with todays date and make B1 add 1 week to
that date and display it?


Try the following formula in cell A1

=TODAY()

and the following formula in cell B1

=A1+7

Hope this helps / Lars-Åke
 
Thanks that works.
Do youi know what formula I can put in other rows that will cause the firls
to stay empty until I add the current date in row 1?
 
What is a "firls"?

I think you want this in B1... IF(A1="","",A1+7)

Rick
 
I entered the formula and I get a strange number.
In A3 I have 8/1/2008 after using the formula IF(A3="","",A3+7) in B3 I get
39668 displays in the cell.
 
Back
Top