Hi. I am trying to update bulk record in SharePoint List with using below code
ClearCollect(Coll_loop_Mater_Table,Filter('Master Table',Title=btn_LOB_MS.Text && Product=btn_Product_MS.Text));
ForAll(Coll_loop_Mater_Table,
Patch('Master Table',LookUp('Master Table',Title=btn_LOB_MS.Text && Product=btn_Product_MS.Text),
{
'Team Manager':Combo_Manager.Selected.GivenName & " " & Combo_Manager.Selected.Surname
'Team Manager mail Id':Combo_Manager.Selected.Mail
}));
but it's update only first row in list. is that because using multiple conditions in lookup which patching record.
I can see all the record in collection but update only first row.
please help me to come out.