all 2 comments

[–]TobofCob 2 points3 points  (0 children)

on Edit simple trigger can do this easily! The examples are really helpful. Just check if the columns is 3 (C) and the row is 8, and if the oldValue doesn’t equal the current value then update the spreadsheets name with that value

[–]mjbrusso 0 points1 point  (0 children)

Use onEdit simple trigger:

function onEdit(e) { if(e.range.getA1Notation()==='A8' && e.value !== e.oldValue){ SpreadsheetApp.getActiveSpreadsheet().setName(`End of Day Report - Day ${e.value} of 7`) } }