Page 1 of 1

Add number of days to a date

Posted: Mon Jun 24, 2013 1:33 pm
by mirmidone
Hi hall.
How to write in a field the result of today + 3 or 4 days

many thanks for resp.

Enio Donci

Re: Add number of days to a date

Posted: Tue Jun 25, 2013 5:59 am
by HighAley
Hello.

You could use C# DateTime method AddDays():

Code: Select all

{Today.AddDays(3)}
Thank you.