function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Valerie BrownValerie Brown 

How do you make date field in a flow be a month after the current date?

anand k 11anand k 11
Hi,


You can add days, months, or years to a date.  
Example: 3 months from today
DATE(
YEAR(TODAY()),
MONTH(TODAY())  + 3,
DAY(TODAY())
)

Thanks
Anand