Hi @steersebastian ,
Do you want to achieve a "Auto-Save" functionality within the custom form app?
Based on the needs that you mentioned, I afraid that there is no direct way to achieve your needs in PowerApps. As an alternative solution, I think the OnChange property of each Text Input box within the data cards in your Edit form could achieve your needs.
Please consider set the OnChange property of the Text Input box (or DatePicker control, or ComboBox, ....) within the data cards in your Edit form to following formula:
For Text field data card:
If(
SharePointForm1.Mode = FormMode.Edit,
Patch(
'SP List',
SharePointIntegration.Selected,
{
TextField1: TextInput1.Text
}
)
)
For Date type field data card:
If(
SharePointForm1.Mode = FormMode.Edit,
Patch(
'SP List',
SharePointIntegration.Selected,
{
DateTypeField: DatePicker1.SelectedDate
}
)
)
For Choice field data card:
If(
SharePointForm1.Mode = FormMode.Edit,
Patch(
'SP List',
SharePointIntegration.Selected,
{
ChoiceField: {
Value: ChoiceFieldComboBox.Selected.Value
}
}
)
)
you need to apply above formula to each data card in your Edit form.
More details about the Patch function, please check the following article:
Patch function
Best regards,