Page 1 of 1

Special Functions Future Date

Posted: Wed Mar 09, 2022 10:41 pm
by kscharpen
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

Posted: Thu Mar 10, 2022 1:05 pm
by Wavget
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.

Re: Special Functions Future Date

Posted: Tue Mar 15, 2022 9:08 am
by kscharpen
Thank you