Hello,
I have came across scenario where I need to update SharePoint list mutiuser field called "InterestedIn".
Here multiple users can register their interests in particular list item using a button which says "I am interested"
on this button I need to add/append current user to the list column "InterestedIn"
Below is my code on button click, some how i need to add current user to existing users in columns and then Patch()
Patch(
GrabOpp,
galOpenOpportunities.Selected,
{
InterestedIn:Table(
{
'@odata.type':"#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Claims:"i:0#.f|membership|" & User().Email,
Department:"",
DisplayName:User().FullName,
Email:User().Email,
JobTitle:"",
Picture:""
})
}
)
Thanks. 🙂
Solved! Go to Solution.
Exactly what i needed Thank you
User | Count |
---|---|
197 | |
122 | |
89 | |
48 | |
41 |
User | Count |
---|---|
286 | |
162 | |
138 | |
80 | |
73 |