Hi all.
I have code in my Patch button.
ForAll(
Split(
Concat(ListBox1.SelectedItems,EmployeeCode,","),","),
Collect(boxCol,Result);
Patch(ProjAs,Defaults(ProjAs),{
EmployeeCode: Result,
StartDate:DatePicker1.SelectedDate,
EndDate:DatePicker1_1.SelectedDate,
Project: Dropdown2_1.Selected}
)
);
I want to Patch values "Result" in Collection to the LookUp Column "EmployeeCode".
Is there any way to do it. Thank you!