Cho mình hỏi:
Đoạn code bên dưới là copy từ 1 sheet của một file excel này sang file excel khác (sheet chitiet của file chitiet.xls). Anh QuangHai trên diễn đàn test ok. Nhưng máy mình sd Office 2010 thì cứ báo lỗi: "Run-time error 9. Subcript out of range"
Nhờ các AE fix để tương thích với Excel 2010 giúp mình. Thanks.
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Set Sh = Sheets("tonghop")
Set data = Range([A2], [AM65000].End(3))
Workbooks.Open ThisWorkbook.Path & "\CHITIET.XLS"
Workbooks("CHITIET").Sheets("CHITIET").[A1:AM10000].Clear
data.Copy Workbooks("CHITIET").Sheets("CHITIET").[A1]
End Sub
Đoạn code bên dưới là copy từ 1 sheet của một file excel này sang file excel khác (sheet chitiet của file chitiet.xls). Anh QuangHai trên diễn đàn test ok. Nhưng máy mình sd Office 2010 thì cứ báo lỗi: "Run-time error 9. Subcript out of range"
Nhờ các AE fix để tương thích với Excel 2010 giúp mình. Thanks.
Private Sub CommandButton1_Click()
Application.ScreenUpdating = False
Set Sh = Sheets("tonghop")
Set data = Range([A2], [AM65000].End(3))
Workbooks.Open ThisWorkbook.Path & "\CHITIET.XLS"
Workbooks("CHITIET").Sheets("CHITIET").[A1:AM10000].Clear
data.Copy Workbooks("CHITIET").Sheets("CHITIET").[A1]
End Sub