snasui.com ยินดีต้อนรับ ยินดีต้อนรับสู่กระดานถามตอบ Excel and VBA และอื่น ๆ ที่เป็นมิตรกับทุกท่าน มีไฟล์แนบมหาศาล ช่วยให้ท่านค้นหาและติดตามศึกษาได้โดยง่าย สมาชิกท่านใดที่ยังไม่ได้ระบุ Version ของ Excel ที่ใช้งานจริง สามารถทำตาม Link นี้เพื่อจะได้รับคำตอบที่ตรงกับ Version ของท่านครับ ระบุ Version ของ Excel
Dim MyFile As String
Dim erow
Dim Filepath As String
Filepath = "S:\Group Support\@Sale Support\Usa\B-Quick\Coverage file\"
MyFile = Dir(Filepath)
Do While Len(MyFile) > 0
If MyFile = "report_formatDate.xlsm" Then
Exit Sub
End If
Sub LoopThroughDirectory()
Dim MyFile As String
Dim erow
Dim Filepath As String
Filepath = "C:\Users\usac\Desktop\Test\"
MyFile = Dir(Filepath)
Do While Len(MyFile) > 0
If MyFile = "report_formatDate.xlsm" Then
Exit Sub
End If
Application.DisplayAlerts = False
Workbooks.Open (Filepath & MyFile)
Sheets("Coverage").Select
Range("A1", ActiveCell.SpecialCells(xlLastCell)).Select
Selection.Copy
Windows("report_formatDate.xlsm").Activate
Sheets("CV").Select
Range("A1").Activate
ActiveSheet.Paste
Windows(MyFile).Activate
ActiveWindow.Close
MyFile = Dir
Loop
Sheets("Control").Activate
End Sub
You do not have the required permissions to view the files attached to this post.