Chào các anh chị trong group.
Em mò được cách lấy một mảng dữ liệu từ một file excel (file 1) để copy vào file em đang thực thi (file2) với code như sau:
Sub copy_dataL()
On Error Resume Next
Dim basebook As String
Dim mybook As Workbook
Dim fname As String
Dim Mypath As String
Application.ScreenUpdating = False
Mypath = Application.ActiveWorkbook.Path
basebook = ActiveWorkbook.Name
ChDrive Mypath
ChDir Mypath
fname = Application.GetOpenFilename(filefilter:="Execel files (*.xlsx), *.xlsx", Title:="Chon file nguon", MultiSelect:=False)
Set mybook = Workbooks.Open(fname)
GetData Mypath, True
mybook.Worksheets(2).Activate
Range("A1:AH79").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Windows(basebook).Activate
L.Select
Range("A1").Select
L.Paste
Sheet1.Select
Range("A1").Select
Application.CutCopyMode = False
mybook.Close False
Application.ScreenUpdating = True
End Sub
Bây giờ em muốn lấy đường dẫn folder chứa file em vừa copy dữ liệu (file1) hiện trên 1 cell bất kỳ (vd A80 của sheet L) của file em đang thực thi (file2) thì có kết hợp vào code trên được không ạ và code thêm như thế nào ạ?
Em cảm ơn các anh chị nhiều !
Em mò được cách lấy một mảng dữ liệu từ một file excel (file 1) để copy vào file em đang thực thi (file2) với code như sau:
Sub copy_dataL()
On Error Resume Next
Dim basebook As String
Dim mybook As Workbook
Dim fname As String
Dim Mypath As String
Application.ScreenUpdating = False
Mypath = Application.ActiveWorkbook.Path
basebook = ActiveWorkbook.Name
ChDrive Mypath
ChDir Mypath
fname = Application.GetOpenFilename(filefilter:="Execel files (*.xlsx), *.xlsx", Title:="Chon file nguon", MultiSelect:=False)
Set mybook = Workbooks.Open(fname)
GetData Mypath, True
mybook.Worksheets(2).Activate
Range("A1:AH79").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Windows(basebook).Activate
L.Select
Range("A1").Select
L.Paste
Sheet1.Select
Range("A1").Select
Application.CutCopyMode = False
mybook.Close False
Application.ScreenUpdating = True
End Sub
Bây giờ em muốn lấy đường dẫn folder chứa file em vừa copy dữ liệu (file1) hiện trên 1 cell bất kỳ (vd A80 của sheet L) của file em đang thực thi (file2) thì có kết hợp vào code trên được không ạ và code thêm như thế nào ạ?
Em cảm ơn các anh chị nhiều !