EXCEL TOOLS
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
Excel Add-ins ที่พัฒนาโดยคุณสันติพงศ์ ณสุย (MVP Excel 2010-2020) ด้วยภาษา C# เพื่อแก้ไขปัญหาไฟล์ใหญ่ คำนวณนาน ทำงานช้า จัดการข้อมูลต่าง ๆ ที่ทำงานประจำวันได้อย่างสะดวกรวดเร็ว สนใจคลิกไปดูได้ที่นี่ครับ => Excel Tools
[code]
และปิดด้วย [/code]
ตัวอย่างเช่น [code]dim r as range[/code]
เพื่อให้แตกต่างจากข้อความทั่วไป สะดวกในการอ่านและทดสอบ (คลิกเพื่อดูตัวอย่าง)Code: Select all
Sub TEST()
'Run with Microsoft Excel 2010
With Application.FileSearch
.LookIn = "C:\FolderTEST\"
.Filename = "FileTEST.TXT*"
If .Execute = 1 Then
Workbooks.OpenText Filename:="C:\FolderTEST\FileTEST.TXT"
Windows("FileTEST.TXT").Close
End If
End With
End Sub
Code: Select all
Sub FindAndOpenFiles()
Dim FilePath As String
Dim fileName As String
Dim wbFound As Workbook
FilePath = "C:\FolderTEST"
fileName = Dir(FilePath & "\*.txt")
Do Until fileName = ""
Set wbFound = Workbooks.Open( _
fileName:=FilePath & "\" & fileName)
fileName = Dir()
Loop
End Sub