ขออนุญาตสอบถามกรณีเขียนVBAตรวจสอบข้อมูลที่ตรงกัน
Posted: Fri Sep 20, 2024 2:17 pm
ขออนุญาตสอบถามกรณีเขียนVBAตรวจสอบข้อมูลที่ตรงกัน โดยที่ให้เอาข้อมูลในช่องJ1ของชีทMain ไปตรวจว่าตรงกับข้อมูลในคอลัมน์AของชีทSectionหรือไม่ ถ้าตรงกันให้เอาข้อมูลในคอลัมน์FของชีทSectionในแถวที่ข้อมูลตรงกัน ไปตรวจว่าข้อมูลในคอลัมน์ตั้งแต่ B7ลงมาต้องมีข้อมูลข้อมูลในคอลัมน์FของชีทSectionตรงกับข้อมูลคอลัมน์Fของช่องJ1 ผมเขียน Code ทดสอบหลายรอบแล้วก็ยังไม่เข้าใจวิธี รบกวนแนะนำผมด้วยครับ ขอบพระคุณครับ
Code: Select all
Sub ตรวจสอบข้อมูล()
Dim wsMain As Worksheet
Dim wsSection As Worksheet
Dim mainValue As String
Dim sectionValue As String
Dim foundRow As Long
Dim matchFound As Boolean
Dim i As Long
Dim j As Long
' ค้นจากชีทMain และ Section
Set wsMain = ThisWorkbook.Sheets("Main")
Set wsSection = ThisWorkbook.Sheets("Section")
' เอาข้อมูลจากช่องJ1
mainValue = wsMain.Range("J1").Value
matchFound = False
For i = 3 To wsSection.Cells(wsSection.Rows.Count, "A").End(xlUp).Row
If wsSection.Cells(i, 1).Value = mainValue Then
foundRow = i
matchFound = True
For j = 7 To wsMain.Cells(wsMain.Rows.Count, "B").End(xlUp).Row
If wsSection.Cells(foundRow, 6).Value = wsMain.Cells(j, 2).Value Then
MsgBox "ข้อมูลตรงกัน"
Exit Sub
End If
Next j
End If
Next i
If Not matchFound Then
MsgBox "ไม่พบข้อมูลที่ตรงกัน"
End If
End Sub