我的谷歌脚本代码不会更新跟踪销售情况的单元格(N5)

时间:2018-02-19 19:39:05

标签: google-sheets-api

我已经在google脚本上编写了一个代码,如果另一个单元格使用短语“vendio”(以西班牙语销售)更新,则该代码应更新工作表上的单元格。在读取“vendio”已经输入之后,它会找到4行的单元格价格并将其添加到跟踪总销售额的单元格中。

// fixed arity
const mult = (x, y) =>
  x * y

// variadic interface
const multiply = (x = 1, ...xs) =>
  xs.reduce (mult, x)
  
console.log (multiply ())        // 1
console.log (multiply (2))       // 2
console.log (multiply (2, 3))    // 6
console.log (multiply (2, 3, 4)) // 24

1 个答案:

答案 0 :(得分:0)

没关系我编辑了我的代码并更改了onEdit函数以匹配我的代码在其中运行的函数的名称。我把它放在这里供其他人看。