#前提
スプレッドシート編集時に発火するトリガーをセットしておくこと
const notice = () => {
const user_email = Session.getActiveUser().getEmail();
Logger.log(user_email);
const Sheet = SpreadsheetApp.getActive();
const Range = Sheet.getActiveCell();
const cell_row = Range.getRow();
const cell_column = Range.getColumn();
const cell_value = Range.getValue();
if((3 <= cell_row && cell_row <= 9) && (4 <= cell_column && cell_column <= 8) &&(cell_value === '●')){
Logger.log('did it');
}
}
onEdit で宣言するとSessionクラスが使えない模様。
参考にしてください。