How to add Today() to number to calculate a date in the future?

I am having a problem calculating a date in a Date column.

I want to define โ€œINITIAL VALUEโ€ of the EstimatedTimeOfCompletion using a formula as follows:

Today()+TimeAllowanceDays

However, this seems not to be working as I only get โ€˜Todayโ€™s dateโ€™ and not โ€˜Todays date + 21 daysโ€™.

I have tried the following as INITIAL VALUE for EstimatedTimeOfCompletion:

a) Today()+1 <-Returns Tomorrowโ€™s date
b) Today()+TimeAllowanceDays <-Returns Todayโ€™s date.
c) Today()+[TimeAllowanceDays] <-Returns Todayโ€™s date.
d) Today()+TimeAllowanceDays+1 <-Returns Tomorrows date.

Question:

  1. What is the correct way to call the value of another field into a formula.
  2. Any other tips that may help would be appreciated.

PS: I already read the following links:(and they are not clear about this).

0 1 116
1 REPLY 1

The column name inside of square brackets.

TODAY() + [number of days]

is correct here.

Top Labels in this Space