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_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A1")) Is Nothing Then
' forms scrollbar
ActiveSheet.Shapes("Scroll Bar 2").ControlFormat.Max = Target.Value
' ActiveX scrollbar
ActiveSheet.Shapes("ScrollBar1").OLEFormat.Object.Object.Max = Target.Value
End If
End Sub
Code: Select all
Private Sub Worksheet_Change(ByVal Target As Range)
'If Not Intersect(Target, Range("B1")) Is Nothing Then
If Target.Address = Range("c1").Range("a1").Address Then
' forms scrollbar
ActiveSheet.Shapes("Scroll Bar 23").ControlFormat.Max = Target.Offset(0, -1).Value
' ActiveX scrollbar
' ActiveSheet.Shapes("ScrollBar1").OLEFormat.Object.Object.Max = Target.Value
End If
End Sub