Hello all,
I have am edit form to create some tasks as shown bellow:

My task field is a multi select choice column in sharepoint. I create a collection (colTasks) out of the form and then display the collection in a gallery:


Then I try to patch the items in the gallery into SharePoint but the problem is that I only patch the first item in the gallery (Task 2) and not Task 3.
ForAll(
colTasks,
Patch(
Meeting,
Defaults(Meeting),
{
Title: Now(),
Task: {
'@odata.type': "#Microsoft.Azure.Connectors.SharePoint.SPListExpandedUser",
Value: Gallery_Tasks_NextWeek.Selected.Label5
}
}
)
)
here is the image of sharePoint:

Can someone pls help me.
Regards
Angela