Hi, i have an issue for experts 🙂
On my PowerApps Application I have a form with sharepoint item.
There is a Person field inside and I would like to find users from another list (Users)
So I change Items to Filter(' users';Code=Label1_5.Text)
Cards Update to:
ForAll(DataCardValue27.SelectedItems As _item;
{
Claims: "i:0#.f|membership|" & Lower(_item.Mail);
DisplayName: _item.DisplayName;
Email: _item.Mail;
Department: "";
JobTitle: "";
Picture: ""
})
And Users saves to SP list... but my Combobox cant see this users after saving.
So my DefaultSelectedItems with Parents.Default cant find this "Users"
Please Help!