Hi All,
I have a powerapps form with SharePoint as the datasource. NewForm has a combobox, which gets values from SharePoint Managed Metadata column named TagsCollection. Items property of the combobox is set to SPListName.TagsCollection.
Update property of the datacard is set to below formula
If(
IsBlank(ComboBox1.Selected.TagsCollection),
ComboBox1.SearchText,
ComboBox1.Selected.TagsCollection
)
Based on above formula, user can add new tag to the TagsCollection as well as select existing tags from the TagsCollection .
However the above Update property throws error "Expected Record Value".
Need inputs on where I am wrong ?