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
Sub ÊÕèàËÅÕèÂÁ¼×¹¼éÒ1_Click()
Dim rng As Range
For Each rng In Sheets("sheet1").Range("a10", "a20")
If rng.Value = 0 Then
rng.Value = ""
End If
Next rng
Sheets("sheet1").Range("a10", "a20").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End Sub
Code: Select all
Sub สี่เหลี่ยมผืนผ้า1_Click()
Dim rng As Range
Dim c As Long
For Each rng In Sheets("sheet1").Range("a10", "a20")
If rng.Value = 0 Then
rng.Value = ""
c = c + 1
End If
Next rng
If c = 0 Then
MsgBox "จำนวนสินค้าเต็มทุกรายการ"
Else
Sheets("sheet1").Range("a10", "a20").SpecialCells(xlCellTypeBlanks).EntireRow.Delete
End If
End Sub