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
Private Sub cboDay_Change()
Dim mRange As Range
'On Error Resume Next
Set mRange = Sheet2.Range("i1")
mRange = Me.cboMonth.Text & "/" & Me.cboDay.Text & "/" & Me.cboYear.Text
With Application.WorksheetFunction
Me.tbox1.Value = .VLookup(mRange.Value, Sheet2.Range("Table"), 6, False)
End With
End Sub
Private Sub cboMonth_Change()
Dim mRange As Range
'On Error Resume Next
Set mRange = Sheet2.Range("i1")
mRange = Me.cboMonth.Text & "/" & Me.cboDay.Text & "/" & Me.cboYear.Text
With Application.WorksheetFunction
Me.tbox1.Value = .VLookup(mRange.Value, Sheet2.Range("Table"), 6, False)
End With
End Sub
Private Sub cboYear_Change()
Dim mRange As Range
'On Error Resume Next
Set mRange = Sheet2.Range("i1")
mRange = Me.cboMonth.Text & "/" & Me.cboDay.Text & "/" & Me.cboYear.Text
With Application.WorksheetFunction
Me.tbox1.Value = .VLookup(mRange.Value, Sheet2.Range("Table"), 6, False)
End With
End Sub
Code: Select all
Private Sub cboDay_Change()
Dim mRange As Range
On Error Resume Next
Set mRange = Sheet2.Range("i1")
If Me.cboMonth.Text <> "" And Me.cboDay.Text <> "" And Me.cboYear.Text <> "" Then
mRange = Me.cboMonth.Text & "/" & Me.cboDay.Text & "/" & Me.cboYear.Text
Else
Exit Sub
End If
With Application.WorksheetFunction
Me.tbox1.Value = .VLookup(mRange.Value, Sheet2.Range("Table"), 6, False)
End With
End Sub
Code: Select all
Me.tbox1.Value = .VLookup(mRange.Value, Sheet2.Range("Table"), 6, False)
Me.tbox1.Value = .VLookup(mRange, Sheet2.Range("Table"), 6, False)