New to scripting, trying to use the OnEdit() to force lowercase on values in column E
started with a few iteration of the following with no succes...
function onEdit(e) {
var range = e.range;
var value = range.getValue();
if (range.getColumn() = 5 ) {
e.range.setValue(e.value.toLowerCase());
} else {
return;
}
}
Any easy tweak you can think of to force lowercase on edits in cloumn E?
Thank you, JF
Generally scripts limit there activity to a specific set of pages and rows. I suppose you are aware that this trigger will be running for all of your tab/sheets.