Hey all I'm working on editing a SharePoint List Form and am running into an issue where the SharePoint columns are not updating with the selected values. The form is saving new forms and edited forms and other non-edited columns are saving correctly.
Both DataCard's update functions are dropdownbox1.selected and combobox1.selected and the data fields are both correctly labeled for their respective columns ("column name").
Dropdownbox1 item formula is: Distinct(choices([datasource].column), value)
ComboBox 1 item formula is: Filter(Datasource, column = dropdownbox1.selected.value && Status = "text").Column
The one inconsistency that I've been able to find based on the documentation is that my SharePointForm1 Item is currently "If(IsBlank(SharePointIntegration.selected), First([DataSource]), SharePointIntegration.Selected)"
Based on the documentation for understanding SharePoint Forms Integration done by powerapps I'm supposed to use this formula
If( IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),
First('*YourListName*'),
SharePointIntegration.Selected )
I've been unable to figure out why the IsEmpty isn't working and it's the only thing I can find that's inconsistent with the documentation. I thought that since the other unedited fields were saving it was a problem with the Dropdownbox1 and/or ComboBox1, but I can't figure out the problem. Please let me know if there are any other things I've not mentioned that I should be checking.