想请问为什么下列程式码只有最后一个 Range("D2:D11").Select 才不会出错。
(Error 1004)
为什么Range(Cells(2, 4),Cells(11, 4)).Select 也会出错?
应该怎么在Select指定 range里加变量?
If Sheets("Sheet1").Cells(1, find_id) = Item_name1 Then
Sheets("Sheet1").Select
'Sheets("Sheet1").Range(Cells(2, find_id), Cells(11, find_id)).Select
'Sheets("Sheet1").Range(Cells(2, 4), Cells(11, 4)).Select
Sheets("Sheet1").Range("D2:D11").Select
Selection.Copy
End If