我对应用程序脚本非常陌生。我想做的是,当投标概率超过75%时,在Google工作表中创建一条弹出消息-指示用户转到Google表单进行填写。
当我从外部调用“弹出”功能时-它正在工作。 当我将其嵌入If公式中并尝试从那里调用它时,它不起作用,但是在同一位置调用的另一条指令正在正确执行。
我不明白怎么了。
function onEdit(e) {
var ss = SpreadsheetApp.getActiveSpreadsheet().getSheetByName('Pipeline track');
var range = e.range;
if (range.getColumn() == 11) {
var value = range.getValue();
if (value >= 0.75) {
range.setValue(1);
showAnchor('Capacity planning', 'https://docs.google.com/');
} else {
range.setValue(0);
}
} else {
range.setValue(10);
};
}
function popup() {
showAnchor('Capacity planning', 'https://docs.google.com/');
}
function showAnchor(name, url) {
var html = '<p>Your proposal reached the stage where we need to reflect it in our operational pipeline - with basic project details </p> <p>Please fill in the below Google Form!</p> <html><body><a href="' + url + '" target="blank" onclick="google.script.host.close()">' + name + '</a></body></html>';
var ui = HtmlService.createHtmlOutput(html);
SpreadsheetApp.getUi().showModelessDialog(ui, "Capacity planning");
}