I have written a small function:
function weeklyCurrency(e) {
var changed_cell = e.range.getA1Notation();
Logger.log(changed_cell);
}
Then set it up as an installable onEdit trigger:
Resources > current projects triggers > weeklyCurreency > onEdit
Saved
Go to sheet and type any value into a cell, then return to the editor and click View > Logs
:
No user logs found. Please run your script and try again.
I expected to see e.g. "A15
".
Why am I not seeing anything whenever I make an edit?
I also tried using a simple trigger function by changing the name of the function to onEdit()
but same thing; no results.