なぜこの問題が発生するのかを確認しようとしています。
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 を削除し、範囲外の問題を取り除きましたが、Object doesn't support this property or method