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
Option Explicit
Sub SwitchTwoFile()
Dim wb As Workbook
Dim rSource As Range
' Other code
For Each wb In Workbooks
If wb.Name <> "Destination.xls" Then
wb.Activate
End If
Next
With ActiveWorkbook.Sheets(1)
Set rSource = .Range("A:A")
End With
' Other code
End Sub
Code: Select all
Option Explicit
Sub EnterRequireField()
Dim rTarget1 As String, rSource1 As String
Dim rTarget2 As String, rSource2 As String
rTarget1 = Worksheets(1).Range("C2")
rTarget2 = Worksheets(2).Range("B2")
Do
rSource1 = InputBox("Enter date")
Loop Until rSource1 <> rTarget1 And rSource1 <> ""
Worksheets(1).Range("C2") = rSource1
Do
rSource2 = InputBox("Enter file name")
Loop Until rSource2 <> rTarget2 And rSource2 <> ""
Worksheets(2).Range("B2") = rSource2
End Sub