the doc is not very helpful. Unlike onEdit
, onChange
event doesn't have a propety that includes the change made. How do I get it?
function onChange(e){
console.log(e);
}
There is no useful information in this event object.
The reason I can't use onEdit is I am using some outside script to POST to this sheet and it won't trigger the on edit
event.