Hi All,
I am trying to patch records from one dataverse table to another table using forall but its not working
so i have two table table one and table 2 and code is unique value for both tables and i want to update description and user from table one to table2 when i select multiple items from a gallery using a checkbox
Here is the formula i am using:
Patch(
Table2,
ForAll(
Filter(
gal_start.AllItems,
galcheckbox.Value = true
),
{
Code: lbl_codeVal.Text,
Description: lbl_Name.Text,
User: LookUp(
Users,
'Full Name' = drpdownuser.Selected.'Full Name'
)
}
)
) is this the correct way to do update records within dataverse tables or should i use power automate please suggest?