I have the following formula working in separate fields. How do I adapt it for use in a table?
=SUM(StartDate,IF(Duration="90days",90,IF(Duration="180days",180,IF(Duration="365days",365,0))))
The purpose is to calculate a new date based on a selection of 3 months, 6 months, or 1 year.
Addendum: Would there be a way to calculate the actual months rather than by days, so for example, that the calculated date from today would be 9/17/2021 (3 months) rather than 9/19/2021 (90 days)?
Thank you.