I have two sharepoint lists and they have exactly same columns (ShPnt_TimeSheet ,ShPnt_TimeSheet_ThisMonth)
I use ShPnt_TimeSheet for the database (over 2000 rows) and I useShPnt_TimeSheet_ThisMonth for real time data (under 2000 rows)
so now I have problem with patching one collection from two sharepoint
I made this code
ForAll(Filter(Gallery5.AllItems,Checkbox1.Value),Patch(_col_timesheet_thismonth,{ID:ID},{ ....... }));
;
Patch(ShPnt_TimeSheet_ThisMonth,_col_timesheet_thismonth)
;
Patch(ShPnt_TimeSheet,_col_timesheet_thismonth)
is there any solution for me to patch collection to new sharepoint list?