gpt4 book ai didi

时间:2018-03-08 标签:c#interopexcel: Write 1D array to excel range

转载 作者:太空宇宙 更新时间:2023-11-03 12:00:09 25 4
gpt4 key购买 nike

我想将一维数组复制到 Excel 中的列范围。为此,我正在使用 interop

我已经尝试过这些东西:

  • range.get_Resize(Ary.Length, 1).Value2 = Ary;
  • range.set_Value(Excel.XlRangeValueDataType.xlRangeValueDefault, Ary);
  • range.Value = Ary;一样简单

我什至尝试过使用 range.value2,但这些东西会将数组中的第一个索引值复制到整个范围。

假设,如果范围内有 200 行并且数组包含整数 101-300,则使用上述尝试的方法在整个范围内仅复制 101。

谁能帮我解决这个问题?如果有人能向我解释这种奇怪的行为,那会更有帮助!提前致谢。

Note: I know I can do it through a for loop, but that takes time. I would surely like to know a method which takes less than a minute to iterate a million rows.

最佳答案

我真的不知道上述方法到底有什么问题。但我找到了解决方案:

Excel.Range range = sheetSource.UsedRange.Columns[columnIndx];
range.Value = application.WorksheetFunction.Transpose(Ary);

关于时间:2018-03-08 标签:c#interopexcel: Write 1D array to excel range,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57397084/

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