How to calculate task due date based on start date and duration

0
Using the Web Modeler, I built a small task manager app that assigns tasks to employees. The app has 3 entities: task, employee, and assignedTask. I need help figuring out how to calculate the due date of a task based on the task start date (stored in the assignedTask entity) and the task duration (stored in the task entity). I am using Mendix Web Modeler version 2.0.232 Thanks. Shamel
asked
1 answers
0

Hello Shamel,

You if you calculate it in a microflow you can use an add date call.

See https://docs.mendix.com/refguide/add-date-function-calls for more details. 

For example you can use addDays($MyDate, $SLA/DaysDue)

Hope this helps

answered