Hi,
I have designed a Powerapps form with SharePoint as the datasource. Mostly in my form, I have used field from SharePoint as the datasource.
I have added an additional field (combobox) from Powerapps, for which i should save the selected value into the Person field in SharePoint.
Hence in NewForm, OnChange of that field, I have written below Patch function.
Patch('DS',NewForm.LastSubmit,{'Registrar':DataCardValue15_1.Selected});
However, when i submit the form, the field value doesn't gets saved into SharePoint. I have used the same Patch function even in OnSuccess of the form, still cannot save.
Any advice please