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
If Sheet2.Cells(3, 8) = "" Then 'A2-1
A2_1.BackColor = RGB(0, 255, 0) 'เขียว
Else
A2_1.BackColor = RGB(255, 0, 0) 'แดง
End If
Code: Select all
Sub Check_A()
Dim rAll As Range, r As Range
On Error Resume Next
With Sheets("DB A")
Set rAll = .Range("A2", .Range("a" & Rows.Count).End(xlUp))
End With
For Each r In rAll
If r.Offset(0, 8) <> "" Then
HOME.Controls(Replace(r.Value, "-", "_")).BackColor = RGB(0, 255, 0)
Else
HOME.Controls(Replace(r.Value, "-", "_")).BackColor = RGB(255, 0, 0)
End If
Next r
End Sub