Current date and time.

0
I have two attributes, one is issued date and  another one is completion date. Assigned current date and time to the issued date but I want to add 7 days to the issued date to get completion date. For example : Issued date:7/21/2022 Completion date: issued date+7 days = 7/28/2022. How can I achieve this? Thanks in advance.
asked
1 answers
2

Hi,

Use addDays($yourattribute, numberofdays) function add days.

for example addDays($issueddate, 7)

 

for more details about date and time refer this document

https://docs.mendix.com/refguide/add-date-function-calls/

 

Thanks.

answered