My problem is, I have a submit form (it is not actually a from, mutiple fields that are pushed via patch function). I also have an edit mode and I want to get values from the sharepoint list to display them in the edit form. Works fine for every field, but i have a Stakeholder Field and there I need to get a typ match with the values from the office365 users and that is not working if there can be multiple users.
This is the default selected item for another value, but that are predefined values:
Filter(
["EU"; "NAR"; "RDW"; "CHN"; "Unknown"];
Value in Split(LookUp(Fehlerstatus; Titel = Gallery2.Selected.Title).AffectedMarkets; ",").Value
)
I want to have something like that for mutiple values, but something like this doesn't work:
ForAll(
Split(LookUp(UserList, Titel = Gallery2.Selected.Title).UserField, ","),
LookUp(Office365Users.SearchUser(), DisplayName = Trim(Result) || Mail = Trim(Result))
)
Do you have any idea?
LookUp('Office365-Benutzer'.SearchUser(); DisplayName = LookUp(Fehlerstatus; Titel = Gallery2.Selected.Title).RequirementOwner)