我只是想将一个 WB 的内容复制到另一个
strColNos = Range(Cells(65536, rngSMonthYr.Column).Address(False, False)).End(xlUp).Row
For intLastCell = 2 To strColNos
strCell1 = Cells(intLastCell, rngSMonthYr.Column).Address(False, False)
strCell2 = Cells(intLastCell, rngDMonthYr.Column).Address(False, False)
Workbooks(wkbSource).Sheets(wsSource).Range(strCell1).Copy _
Destination:=Workbooks(wkbDestination).Sheets(wsDestination).Range(strCell2)
Next intLastCell
strCell1 的值为“D2”(源书),strCell2 的值为“F2”(目标书)
rngSMonthYr、rngDMonthYr 基本上是输入框,用户可以在其中从源表和目标表中选择特定月份。我需要将所有行从选定的源列复制到选定的目标列。
任何帮助将不胜感激。
谢谢,亚伦