Google工作表脚本始终返回相同的响应

时间:2018-01-02 17:47:51

标签: google-apps-script google-sheets formulas

还是很新的。

我写了一个函数:

function maxHousing(actualCost,allowedCost){

  if (actualCost == ""){
    return "";
  }

  if (parseInt(actualCost) <= parseInt(allowedCost)){
    return actualCost;
  }
  else{
    return allowedCost;
  }
}

然后,我的表格中有一个字段,其中包含以下公式:

=ARRAYFORMULA(
    if(
    row(Parents!A:A)=1,
    "Allowed Housing",
    maxHousing(Parents!D1:D,Allowances!B6)
       )
)

这个函数总是返回allowedCost,无论我做什么实际成本。

我显然在这里做了一些非常明显错误的事情!

0 个答案:

没有答案