Hi @Ramonjairo31 ,
Do you want to create a screen like the screenshoot that you provided?
Do you want the startdate will be the last enddate automatically, the end date will be the startdate+days?
If so, I've made a similar test for your reference:
1)my data source:
listname: user_form1
fieldname: start date(date type), end date(date type), days( number type), task(text type)
2)my app:
insert these controls: 2 textinputs, 2 datepickers, a submit button, a data table
set datepicker1's DefaultDate:
If(IsEmpty(user_form1),Today(),Last(user_form1).enddate)
set datepicker2's DefaultDate:
DateAdd(DatePicker1.SelectedDate,Value(TextInput2.Text))
set datepicker2's DisplayMode:
Disabled
set submit button's OnSelect:
Patch(user_form1,Defaults(user_form1),{task:TextInput1.Text,days:Value(TextInput2.Text),'start date':DatePicker1.SelectedDate,'end date':DatePicker2.SelectedDate});Reset(TextInput1);Reset(TextInput2)
set the datatable's Items:
user_form1

Then the screen will just like what you description.
Do not forget to replace the fieldnames, listnames,control names with yours.
Best regards,