Hi,
So I linked(one is to one) task to an entity and would like to change status to completed or move duedate if I created an entity. Formula is below
ifThen(createdAt>=task.dateEndDate, task.dateEndDate=datetime\addDays(task.dateEndDate , 1));
I also did the formula below but still didn't work
ifThen(createdAt>=task.dateEndDate, task.status="Completed");
So I linked(one is to one) task to an entity and would like to change status to completed or move duedate if I created an entity. Formula is below
ifThen(createdAt>=task.dateEndDate, task.dateEndDate=datetime\addDays(task.dateEndDate , 1));
I also did the formula below but still didn't work
ifThen(createdAt>=task.dateEndDate, task.status="Completed");
Comment