0
我遇到一些麻煩我的代碼另一個範圍:Excel的VBA複製到使用細胞
Worksheets("Week 1").Range(Cells(4, ColNo), Cells(5, ColNo)).Value = Worksheets("Count").Range(Cells(4, 2), Cells(5, 2)).Value
如果我將其更改爲
Worksheets("Week 1").Range(Cells(4, ColNo), Cells(5, ColNo)).Value = Worksheets("Count").Range("B4:B5").Value
它工作正常,誰能幫助?
'Cells'不是完全限定之後加入。地址所以它指的是當前活動片' – Slai
[ '1周' A4:!A5] .Columns( ColNo)= [Count!B4:B5]' – Slai
感謝Robin,在單元函數工作後添加.address。 – Cr1kk0