how can set end date = current date+3 days
example
if current date = 17-2-2021
i need set end date 20-2-2021
how can do this
Hi Andrew,
Use this
AddDays( CurrDate(), 3 )
Regards,
Daniel.
Btw, if you search Google or forum this question you would have found the answer yourself.
Hi
You can use AddDays build-in action to achieve this.
AddDays(CurrDate(),3)
Hope it could help you.
Kind Regards,
Hello Andrew,
As already answered by Daniel and Tom, the AddDays functions will help you with what you currently need.
In addition, to expand your knowledge further, I'm sharing a link to the Outsystems Documentation that can grant you an insight regarding such built in functionalities in Outsystems.
https://success.outsystems.com/Documentation/11/Reference/OutSystems_Language/Logic/Built-in_Functions
https://success.outsystems.com/Documentation/11/Reference/OutSystems_Language/Logic/Built-in_Functions/Date_and_Time
Regards.
-Jose
Hi,
Try using expression, hope it will help you to achieve,
Thanks