Hi Guys,
Can someone explain to me why sending information from set column value doesn’t actually set the column value?
I have a script that if a cell (W2) is changed, my sheet will delete everything in cells C2:T5
function onEdit(e) {
var sheet = e.source.getActiveSheet();
if (e.range.getA1Notation() == “W2”) {
var range = sheet.getRange(“C2:T5”);
range.clearContent();
}
}
I created an action to set column value in W2 to True and then to false when a button is pressed, this does add a true and false statement to the cell W2 but the script doesn’t see this.
If I go to the google sheet and do what I just asked glide to do the script does work.
It’s not just set column value either, it’s anything I use in glide to send information to the required cell.
So what gives? Even though the information is visible on the sheet - does the sheet see it as we do?
I have accomplished what I needed to do by integrating integromat - glide - google sheets - clear cells C5:T5
But am curious as to why my set column value doesn’t do the same thing. So can anyone explain why not, please?