Я использую код ниже
iMaxRow = 200
" Loop through columns and rows"
For iCol = 1 To 3
For iRow = 1 To iMaxRow
With Worksheets("GreatIdea").Cells(iRow, iCol)
" Check that cell is not empty."
If .Value = "" Then
"Nothing in this cell."
"Do nothing."
Else
" Copy the cell to the destination"
.Copy Destination:=Worksheets("Sheet2").Cells(iRow, iCol)
End If
End With
Next iRow
Next iCol
Код выше применим только на том же листе Excel.Я хотел бы расширить его, чтобы он вставился в текстовый документ.Я предполагаю, что это что-то с;
appWD.Selection.PasteSpecial
Но проблема в том, что я не сделал никаких выборов.Код хороший, нужно отредактировать Copy Destination:=Worksheets("Sheet2").Cells(iRow, iCol)
.
Спасибо за помощь!