Date in future as default value

Is there a way to use CurrentDate() for a date in the future as default value, like 8 days ahead (couldn’t find help text on CurrentDate() ) ?

Marko

Use C# native datetime function to get the date and format it to your desired format (such as Ymd). For example:
FormatDate(DateTime.Today.AddDays(8), 5)

Thank you, works fine