Here is the script I have so far:
function onEdit(e) {
var row = e.range.getRow();
var col = e.range.getColumn();
e.source.getActiveSheet().getRange(row,30).setValue(new Date())
}
The issue is I need to be able to edit certain fields without it triggering a new date. There's a clean range of cells that I need the script to work (I5:O60) on but can't figure it out.