Hi all,
I have created a form for maintenance checks that includes date pickers, combo boxes and text inputs. The form does NOT use a gallery, but instead finds the record to edit/view using an ID search:

Upon submission, the form correctly goes to view mode and allows editing of the submitted fields upon selecting the edit icon. The issue I have is when I edit the form and do not reselect the item in the combo box, the form will assume and submit a blank even though there appears to be a selected item in the combo box. E.g. If only the "Pressure Building Circuit" field of a saved record is updated to "Acc" then that would be the only field saved when I view the form afterwards. The other combo boxes become blank in the data source despite being unchanged and appearing to be there when I update.
This issue only applies to the combo boxes and the text and date correctly shows and updates the ThisItem.FieldName. The default selected items is "Acc" when form is new but parent.default when view or edit mode. The options are taken from the Status column in a dataverse table.
Card update property:
DataCardValue14.Selected.'Status (cr1ec_status)'
DefaultSelectedItems property:
If(
New,
Filter('Check Statuses', cr1ec_status = "Acc"),
Table({Value: ThisItem.'Pressure Building Circuit'})
)
Any help on resolving this issue would be appreciated, thanks.