I am using a SharePoint list as my data source. I have a choices column, which is set to allow manual input, and allow "Fill-in" choices.
I am trying to update this field via a ComboBox in PowerApps. If the ComboBox is blank, the field should be update with whatever the user has typed into the TextSearch field of the ComboBox (user can add choices manually if theirs isn't available).
I am using the following formula on the 'Update' property of the data card:
If(IsBlank(SubcategoryCB.Selected), SubcategoryCB.SearchText, SubcategoryCB.Selected)
This results in the error: "Expected record type". To my understanding, having the "Fill-in" option ticked in the SharePoint list should make this work.
Any help would be much appreciated!!!