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
ListBox1.ColumnWidths = "40,100,100,100,100,100,100"
For i = 3 To Sheet2.Range("A1000000").End(xlUp).Row
If LCase(Sheet1.Cells(4, 9).Value) = "" Then
MsgBox ("กรุณาใส่ HN")
ElseIf InStr(LCase(Sheet2.Cells(i, 2).Value), LCase(Sheet1.Cells(4, 9).Value)) <> 0 Or InStr(LCase(Sheet2.Cells(i, 4).Value), LCase(Sheet1.Cells(4, 9).Value)) <> 0 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
Code: Select all
'Other code
For i = 3 To Sheet2.Range("A1000000").End(xlUp).Row
If LCase(Sheet1.Cells(4, 9).Value) = "" Then
MsgBox ("กรุณาใส่ HN")
Exit For
'Other code