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 Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Target.Address = Range("C13").Address Then
If Range("C13").Value = "" Then
UserForm1.Show
Cancel = True
End If
End If
If Target.Address = Range("C14").Address Then
If Range("C14").Value = "" Then
UserForm1.Show
Cancel = True
End If
End If
If Target.Address = Range("C15").Address Then
If Range("C15").Value = "" Then
UserForm1.Show
Cancel = True
End If
End If
End Sub
Code: Select all
Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As Boolean)
If Not Intersect(Target, Me.Range("c13:c44")) Is Nothing Then
' If Target.Address = Range("C13").Address Then
If Target.Value = "" Then
UserForm1.Show
Cancel = True
End If
End If
' If Target.Address = Range("C14").Address Then
' If Range("C14").Value = "" Then
' UserForm1.Show
' Cancel = True
' End If
' End If
' If Target.Address = Range("C15").Address Then
' If Range("C15").Value = "" Then
' UserForm1.Show
' Cancel = True
' End If
' End If
End Sub