Inserting rows one after another from a 600 records dataset takes almost an hour using the following method:
foreach($people as $person){
$insert['name'] = $associate -> name;
$insertedListEntry = $spreadsheetService->insertRow($insert, $spreadsheetKey, $worksheetId);
}
Can I insert multiple rows at once?
source
share