maithanhanhdung
Thành viên mới
- Tham gia
- 16/9/19
- Bài viết
- 1
- Được thích
- 0
Em chào mọi người, e mới tìm hiểu về Vba để giúp công việc được nhanh gọn hơn, e đang tập viết code để copy dữ liệu từ 1 file đang đóng mà bị báo lỗi 424, mọi người có thể chỉ cho e sai chỗ nào không ạ, e cám ơn nhiều ạ
Sub ImportData()
Dim owb As Workbook
Dim lastRow As Integer
Dim sh As Worksheet
Set sh = Sheet1
lastRow = (sh.Cells(sh.Rows.Count, "D").End(xlUp).Row) + 1
Set owb = Workbooks.Open("G:\Programs\tu\BangKe HDDT IN.xlsm")
owb.Sheets("in").Range("A6:V6").End(xlDown).Copy
sh.Cells(lastRow, 4).PasteSpecial xlPasteValues
owb.Close False
End Sub
Sub ImportData()
Dim owb As Workbook
Dim lastRow As Integer
Dim sh As Worksheet
Set sh = Sheet1
lastRow = (sh.Cells(sh.Rows.Count, "D").End(xlUp).Row) + 1
Set owb = Workbooks.Open("G:\Programs\tu\BangKe HDDT IN.xlsm")
owb.Sheets("in").Range("A6:V6").End(xlDown).Copy
sh.Cells(lastRow, 4).PasteSpecial xlPasteValues
owb.Close False
End Sub