Adding a time period to a date

Hi everyone,

I am currently running a project where I need to add a time span (6 or 12 weeks) to a start date to get an end date. So I have the variable start_date (given by input through a form) and I want to add 6 or 12 weeks to the date using a dmn table to get an end_date.

Does anyone know how to do this, help is greatly appreciated.

Hi @Frank23,

A FEEL expression similar to below should do the job

date(start_date) + duration("P6W")

1 Like