0

我需要在其中插入一个参数:

row: workbook.getWorksheet("VittorioZigiotto").getRange("VittorioZigiotto[237]:Vittorioigiotto[241]")

该参数需要位于现在有“237”的位置,并且需要依赖于工作簿中的一个单元格。例如,MONEYPAGE1!A1+5。有任何想法吗?

4

1 回答 1

0

您可以通过执行以下操作从 MONEYPAGE!A1 获得您想要的值而不是 237:

const valueFromMPA1 = workbook.getWorksheet("MONEYPAGE").getRange("A1").getValue(); // use getValue for convenience since it's a single cell
const rowString = `VittorioZigiotto[${valueFromMPA1}]:VittorioZigiotto[${valueFromMPA1 + 5}]`; // this is a js/ts way to construct strings with params
// and then pass that in as the argument ...
const row = workbook.getWorksheet("VittorioZigiotto").getRange(rowString);

我不确定您的确切情况,但还可以查看 .getRangeByIndexes(而不是 getRange),它可以让您传递数字行/列值,而不必构造字符串参数。

于 2021-02-09T04:07:03.460 回答