我写了一个简单的 Excel 脚本,它在网上运行得很好,但是如果我将相同的脚本与 Power Automate 一起使用,我会得到一个错误。
这是脚本:
function main(workbook: ExcelScript.Workbook)
{
let sheet = workbook.getActiveWorksheet();
let range = sheet.getUsedRange();
let rows = range.getRowCount();
let cols = range.getColumnCount();
for (let row = 2; row <= rows; row++) {
}
}
我收到消息:运行时错误第 5 行:无法读取未定义的属性“getRowCount”
有谁知道为什么此消息仅在 Power Automate 中出现以及如何解决?