gpt4 book ai didi

.net - 用一个数组(字符串)填充 Excel 范围的 .Formula

转载 作者:行者123 更新时间:2023-12-03 18:24:53 26 4
gpt4 key购买 nike

(在 C# 中(尽管语言不重要))

range.Formula = array;

不会导致错误,但行为与
range.Value2 = array;

:公式看起来像值。只有在我对单元格执行 F2、Enter 后,它的公式才会被正确评估。

这就是我填充数组的方式:
// setup (parameters)
int rows = cols = 10;
int rowStep = 1000*1000;
var array = new string[rows, cols];
// Fill the array.
for (long iRow = 1; iRow == rows; iRow++)
{
for (long iCol = 1; iCol == cols; iCol++)
{
// Put a count in the cell. E.g. "=A1+1+1000000"
array[iRow-1, iCol-1] = "=A1+" + iCol + "+" + (iRow * rowStep);
}
}

最佳答案

如果我使用 object[,] 对我有用而不是 string[,] .

关于.net - 用一个数组(字符串)填充 Excel 范围的 .Formula,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9659649/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com