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 Exp()
Dim i As Long
Dim l As Long
Dim r As Long
Application.ScreenUpdating = False
Range("M7:P30").ClearContents
l = Range("b" & Rows.Count).End(xlUp).Offset(1, 0).Row
For i = 1 To l
r = Range("n" & Rows.Count).End(xlUp).Offset(1, 0).Row
If LCase(Range("b" & i).Value) = LCase(Range("n6").Value) Then
Range("n" & r).Value = Range("b" & i).Value
Range("m" & r).Value = Range("a" & i).Value
Range("o" & r).Value = Range("c" & i).Value
Range("p" & r).Value = Range("d" & i).Value
End If
Next i
Application.ScreenUpdating = True
End Sub
Code: Select all
For i = 7 To l
Code: Select all
If Range("b" & i).Value = Range("n6").Value And Range("a" & i).Value >= Range("m6").Value Then
ขออนุญาตนะคะ ไม่ทราบว่านำโค้ดไปวางถูกตำแหน่งไหมค่ะ โค้ดยังใข้งานไม่ได้ค่ะpuriwutpokin wrote: Fri Sep 22, 2023 10:24 pm ปรับตรงนี้ครับCode: Select all
For i = 7 To l
Code: Select all
If Range("b" & i).Value = Range("n6").Value And Range("a" & i).Value >= Range("m6").Value Then
Code: Select all
Sub Exp()
Dim i As Long
Dim l As Long
Dim r As Long
Application.ScreenUpdating = False
Range("M7:P30").ClearContents
l = Range("b" & Rows.Count).End(xlUp).Offset(1, 0).Row
For i = 7 To l
r = Range("n" & Rows.Count).End(xlUp).Offset(1, 0).Row
If Range("b" & i).Value = Range("n6").Value And Range("a" & i).Value >= Range("m6").Value Then
Range("n" & r).Value = Range("b" & i).Value
Range("m" & r).Value = Range("a" & i).Value
Range("o" & r).Value = Range("c" & i).Value
Range("p" & r).Value = Range("d" & i).Value
End If
Next i
Application.ScreenUpdating = True
End Sub