Can Google Apps Script copy the values from on cell and paste the values onto another cell in the same sheet, and then repeat for all sheets? I'm trying to create a script whereby the value in A1, for each Sheet gets copied (value only) onto B1. This function only works in one sheet:
function CopyToRange() {
var source = SpreadsheetApp.getActiveSpreadsheet();
source.getRange('A1').copyTo(source.getRange('B1'), SpreadsheetApp.CopyPasteType.PASTE_VALUES, false);
}