$valueRange = new Google_Service_Sheets_ValueRange();
// You need to specify the values you insert
$valueRange->setValues(["values" => ["$now", "SKIP", "SKIP", "SKIP", "$quantity", "SKIP", "SKIP"]]); // Add two values
// Then you need to add some configuration
$conf = ["valueInputOption" => "USER_ENTERED"];
// Update the spreadsheet
$service->spreadsheets_values->append($spreadsheetId, $range, $valueRange, $conf);
I only want to update specific columns in the row I am editing, how do I skip the ones that I don't want it to touch?
Where I have put "SKIP" I want it to completely ignore that column and keep whatever information is already in it