My power app has a combobox that is used to search Office365 users within my company by their display name. The default selected Items are pulled from a a data card value on another screen of the app. These default values are pulled in but they are not seen as a office 365 display name. This allows me to look that user up and select them essentially adding them in twice. If I also try to update back to that same data card that is used for the default selected items it updates with blank lines because its not seeing the original default selected items as display names.
Here is my coding for the combobox:
Is anyone aware of a work around for this?
Your selections will never match with that formula in the DefaultSelectedItems property (DSI).
The DSI MUST be a record that is identical to the Items property.
Your Items property is a table of records with an Office365 User Schema. Your DSI is a table of records with a single column called Value. This will not match.
What is it that you are trying to split from DataCardValue38? And, you are not specifying the property of that control...is it a text control, or what kind of control is DataCardValue38?