I have script for Google Sheets that I collected on interwebs and got some help here. No I have 2 onEdit in conflict. I overcome that by creating script Trigger
Rename your first the onEdit function to onEdit1 (actually it will be better to assign a descriptive name), then add the following function:
function onEdit(e){
onEdit1(e);
onEdit2(e);
}
Related