我正在构建一个谷歌脚本,但在创建条件格式时遇到问题。如果我在工作表中构建它们,则设置条件格式的范围没有问题,然后将其设置为“大于或等于”并给它一个单元格,例如 =$B$5。
当我使用脚本构建相同的东西时,它给我一个错误,它只接受数字而不接受单元格..?
谁能帮我解决这个问题吗?或者根本不支持?
// What i want to work, but throws an error, since it doesn't get a number.
formatrules.push(Rule1);
var rule_builder = SpreadsheetApp.newConditionalFormatRule()
.whenNumberGreaterThanOrEqualTo("=$B$9")
.setBackground("#85e085")
.setRanges([currentsheet.getRange("H3:H8")])
.build();
// Something I tried, but it sets it to a static number and not the cell
formatrules.push(Rule1);
var rule_builder = SpreadsheetApp.newConditionalFormatRule()
.whenNumberGreaterThanOrEqualTo(sheet.getRange('B9').getValue())
.setBackground("#85e085")
.setRanges([currentsheet.getRange("H3:H8")])
.build();
慕哥9229398
温温酱
POPMUISE
相关分类