I am patching multiple records to a SharePoint list with one statement and attempting to set the return variable.
ClearCollect(_returnVar, Patch('Data Source', _patchBaseRecords, DropColumns(_patchRecords, "unneededField1", "unneededField2")));
Unfortunately, despite the patch successfully posting records to the SharePoint list, _returnVar remains an empty variable.
Any help is appreciated.