Hi, In my table I have a field where I want the expiration date of a contract be automátically calculated based on another date field (when the contract was signed) + 36 months duration period. The formula is as follows:
DATEADD({signed}, 36, “months”)
Most of our contracts are for 3 year periods, but because, we actually have some that are for one year, I thought I could create another number field where I could set as default the value “36” but eventually could change the number of months to “12”, for example. Now the new formula is:
DATEADD({signed}, {contract duration}, “months”)
PROBLEM:
The date appearing in the signed field is June 20, 2015. In the first formula, the date that resulted was June 20, 2018 (signed date, 36 months later)
The second formula however came June 19, 2018, a day earlier.
I’ve tried with different month values. it always comes one day earlier. Any tips, suggestions, etc would be appreciated.