Hello,
I'm trying to implement a combobox in an app connected to a Sharepoint list which has the option for users to either select an item or fill-in their own item. Saving is done using OnSave = SubmitForm(SharePointForm1) etc., no custom buttons as some solutions propose.
Solutions such as this one Manual Fill In Option For Combo Box
do not work, as I get the following error:

The following code produces the error on the image above.
Put this code in Update Property of the Card. It will fit your scenario much better.
If(
!IsBlank(ComboBox1.Selected),
ComboBox1.Selected.your_column_name,
ComboBox1.SearchText
)
My question is how to create a combobox that allows user fill-in an app connected to a Sharepoint list (the app is made using Integrate --> PowerApps --> Customize forms).
Thanks for your help.