我在Excel 2016 for Mac(15.36.170702)上执行以下操作:
Excel.run(function (ctx: Excel.RequestContext) {
var tblAddress = "Sheet1!A1:P12";
var masterTable : Excel.Table = ctx.workbook.tables.add(tblAddress, true);
return ctx.sync();
}
获取以下错误:
{
"code": "GeneralException",
"message": "GeneralException",
"errorLocation": "TableCollection.add"
}
此相同代码在Excel for Windows和Excel Online上正常运行。