Hi @,
I have a ComboBox in my PowerApps where it is possible to select values from a SharePoint list.
But I also want to be able to enter a new, individual value.
This works also so far, only with the update I have now problems.
The individual value is not recognized and therefore nothing is written into the SharePoint list.
I have stored the following values in the ComboBox:
Default = null
DefaultSelectedItems = null
DisplayFields = ["Result"]
Items = Sort(Distinct(mySPList; Title); Result; Ascending)
SearchFields = ["Result"]
Update =
If(
IsBlank(ComboBox1.SearchText);
ComboBox1.Selected.Result;
If(
IsBlank(ComboBox1.Selected.Result);
ComboBox1.SearchText;
ComboBox1.Selected.Result
)
)
ComboBox1.SearchText, however, unfortunately returns me nothing when I enter an individual text.
Can someone tell me what I am doing wrong here ?
Thanks a lot
Regards
Herb