Special Functions Future Date
Special Functions Future Date
Is there a way to use the special function Date {Date mm/dd/yyyy} and make it output for example today + 45 days to fill a form based on todays date, but instead with a future day say 45 calendar days from now? Thank you.
Re: Special Functions Future Date
You can add 45 days to the current date like this:
{Date mm/dd/yyyy,45}
Today, 03/10/2022, this would type 04/24/2022.
This function also works with negative numbers to subtract days:
{Date mm/dd/yyyy,-45}
Today, 03/10/2022, this would type 01/24/2022.
{Date mm/dd/yyyy,45}
Today, 03/10/2022, this would type 04/24/2022.
This function also works with negative numbers to subtract days:
{Date mm/dd/yyyy,-45}
Today, 03/10/2022, this would type 01/24/2022.
Re: Special Functions Future Date
Thank you