Im tried complete my inventory sheet with a function date created and last modifier via a tutorial Youtube, im reading comment, many guys have trouble like me, i think if found the way solve this issue, its will help many, thank in advance any help.
Im not a developer or some guys have knowledge about code. Shame is my english also not good. Forgive me, this is my first topic in a biggest dev community, hope i have welcome.
I have some problem its not working as i want in some case like. My test spreadsheet is here
- Copy paste a lot row, its dont work.
- When pull a cell, array, its just work with first row.
- Instant display time when a new row created also fill not yet.
- Both time still display when im delete cell to empty a row.
function onEdit(e) {
addTimestamp(e);
}
function addTimestamp(e){
//variables
var startRow = 3;
var targetColumn = 1;
var ws = "DATABASE";
//get modified row and column
var row = e.range.getRow();
var col = e.range.getColumn();
if(col === targetColumn && row >= startRow && e.source.getActiveSheet().getName() === ws){
var currentDate = new Date();
e.source.getActiveSheet().getRange(row,23).setValue(currentDate);
if(e.source.getActiveSheet().getRange(row,22).getValue()==""){
e.source.getActiveSheet().getRange(row,22).setValue(currentDate);
} // END IF check if date created exists
} // END IF check column, row, worksheet
} //END function add Timestamp
Try this:
And please note that you cannot run this function from the script editor without using an intermediate function to build and supply the event object. Instead just save it and edit the "DATABASE" sheet and use e.source.toast() or Logger.log() to debug it. The onEdit trigger will supply the event object.