我有下面的代碼是工作一個小時回來,現在不工作suddenely :-( 我在這裏缺少什麼Excel的VBA:複製範圍到一個新的工作簿
Set NewWorkbook = Workbooks.Open("P:\Env_Check_Report\Results\" & "ENV_Report_ORG.xlsx", UpdateLinks:=True)
Set ReportWorkbook = Workbooks.Open("P:\Env_Check_Report\Results\" & "Report.xlsx", UpdateLinks:=True)
ReportWorkbook.Sheet5.Range("B2:T10").Copy _
Destination:=NewWorkbook.Sheet2.Range("B2:T10")
請告訴我運行時錯誤?哪一行給出錯誤? – Santosh 2013-05-06 20:03:12
對象不支持此屬性或方法是錯誤。它投擲在最後一行,我複製粘貼 – Jill448 2013-05-06 20:05:13
行*的哪部分*給你的錯誤?它是否是「ReportWorkbook.Sheet5」?或者'ReportWorkbook.Sheet5.Range(「B2:T10」)'?或'ReportWorkbook.Sheet5.Range(「B2:T10」)。Copy'?或者...你明白了。 – 2013-05-07 07:28:29