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
'-----othercode
Me.ListBox1.ColumnCount = 8
Me.ListBox1.List = arr
ListBox1.ColumnWidths = "40,100,100,100,100,100,100"
For i = 3 To Sheet2.Range("A1000000").End(xlUp).Row
If Sheet2.Cells(i, 2).Value = Sheet1.Cells(4, 9).Value Or Sheet2.Cells(i, 4).Value = Sheet1.Cells(4, 9).Value Then
Me.ListBox1.AddItem
For x = 1 To 8
Me.ListBox1.List(ListBox1.ListCount - 1, x - 1) = Sheet2.Cells(i, x)
Next x
End If
Next i
'-----othercode
Code: Select all
'-----othercode
Me.ListBox1.ColumnCount = 8
Me.ListBox1.List = arr
ListBox1.ColumnWidths = "40,100,100,100,100,100,100"
For i = 3 To Sheet2.Range("A1000000").End(xlUp).Row
If Sheet2.Cells(i, 2).Value Like "*" & Sheet1.Cells(4, 9).Value & "*" Or Sheet2.Cells(i, 4).Value Like "*" & Sheet1.Cells(4, 9).Value & "*" Then
Me.ListBox1.AddItem
For x = 1 To 8
Me.ListBox1.List(ListBox1.ListCount - 1, x - 1) = Sheet2.Cells(i, x)
Next x
End If
Next i
'-----othercode