Отвечает чатгпт:
var sheet = Api.GetActiveSheet();
// Get the range of column D
var columnD = sheet.GetRange("D:D");
// Iterate through each cell in column D
columnD.ForEachCell(function(cell) {
// Check if the cell value is equal to "Сегодня"
if (cell.GetValue() === "Сегодня") {
// Get the corresponding cell in column E
var cellE = cell.GetOffset(0, 1);
// Update the value in column E to [Данной_значение]
cellE.SetValue([Данной_значение]);
}
});