gpt4 book ai didi

excel - 下标超出范围

转载 作者:行者123 更新时间:2023-12-03 03:01:31 25 4
gpt4 key购买 nike

我正在尝试了解为什么会遇到此问题。

Private Sub test()

Dim Row As Integer

For Row = 1 To 100

'Loop through SummaryRange and ignore blanks but get document type'
Dim documentTypes As String

Dim myDocument As String, Column As Integer

Column = 2

'First get range from Summary'
Sheets("Sheet1").Active

If ActiveSheet.Cells(Row, Column).Value <> "" Then documentTypes = documentTypes + "," + ActiveSheet.Cells(Row, Column).Value

Sheets("Sheet12").Active

ActiveSheet.Range("B17").Value = documentTypes

Next Row

End Sub

我试图循环遍历不同工作表中的范围,然后获取值,然后将它们连接成一个字符串并输出该字符串。

编辑:

删除了 SummaryRange,解决了超出范围的问题,但出现了对象不支持此属性或方法

最佳答案

尝试改变:

 Sheets("Sheet1").Active

致:

 Sheets("Sheet1").Activate

同样适用于:

 Sheets("Sheet12").Active

关于excel - 下标超出范围,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10002659/

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