I am using the following to update data in a SharePoint list from a PA Edit form.
Is this an all of nothing process, if you change one field do you have to account for all the form fields and overwrite data that remains the same merely because to not include all fields may leave some of the SP list columns blank for the item where data once was?
Is there a formula that says if any of the form fields change only update data associated with those field on the list, and leave all other data associated with that line item as is?
UpdateIf(
SharePoinList, EmployeeEmail = DataCardValue14.Text,
{EmployeeName: DataCardValue12.Text,
EmployeeEmail: DataCardValue14.Text,
Department: DataCardValue13.Text,
SupervisorName: DataCardValue20.Text,
SupervisorEmail: DataCardValue15.Text,
MainTopic: DataCardValue16.Text,
DateOfRequest: DataCardValue18.SelectedDate,
ResponseDueDate: DataCardValue26.SelectedDate,
'In-ProcessDate': DataCardValue23.SelectedDate,
CompleteDate: DataCardValue24.SelectedDate,
RequestStatus: DataCardValue25.Selected,
Notes: DataCardValue19.Text}
);