0
我想從多個單元格創建一個範圍。事情是這樣的:從多個單元格創建一個範圍
我想有以下4個單元:
Cells(4, 7)
Cells(4, 8)
Cells(8, 7)
Cells(8, 8)
從文件中提取並然後保存到另一個文件作爲其第一行。
我寫了這樣的事情:
With mybook.Worksheets(5)
Set sourceRange = .Range(Cells(4, 7), Cells(4, 8),
Cells(8, 7), Cells(8, 8))
End With
我面臨的問題是,只有Cells (4,7)
和Cells (4,8)
出現在彙總表。
任何人都可以幫助我嗎?
謝謝你的解決方案。 :-) – user3045046
如果您覺得有用,請接受答案。謝謝! :) – Manhattan