Page 1 of 1

มีปัญาเกี่ยวกับการกรองข้อมูลจากการหาข้อมูลโดยใช้ VBA

Posted: Thu Oct 24, 2019 3:42 pm
by boylee1928
ผมต้องการที่จะกรองข้อมูลจากTextbox หลายๆTextbox เเล้วเเสดงใน Listbox พอจะมีเเนวทางการเขียนโค๊ดไหมครับ
ตัวอย่างโค๊ดที่ผมเขียนสามารถกรองได้เเค่Textboxเดียวเท่านั้น

Code: Select all

Private Sub TextBox1_Change()
Dim i As Long
ListBox1.Clear
Me.ListBox1.AddItem
   For X = 1 To 7
     Me.ListBox1.List(0, X - 1) = Sheet1.Cells(1, X)
   Next X
For i = 2 To Application.WorksheetFunction.CountA(Sheet1.Range("A:A"))
a = Len(Me.TextBox1.Text)
If StrConv(Left(Sheet1.Cells(i, 1).Value, a), vbLowerCase) = StrConv(Left(Me.TextBox1.Text, a), vbLowerCase) Then
Me.ListBox1.AddItem Sheet1.Cells(i, 1).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 1) = Sheet1.Cells(i, 2).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 2) = Sheet1.Cells(i, 3).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 3) = Sheet1.Cells(i, 4).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 4) = Sheet1.Cells(i, 5).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 5) = Sheet1.Cells(i, 6).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 6) = Sheet1.Cells(i, 7).Value
End If
Next i
End Sub

Private Sub TextBox2_Change()
Dim i As Long
ListBox1.Clear
Me.ListBox1.AddItem
   For X = 1 To 7
     Me.ListBox1.List(0, X - 1) = Sheet1.Cells(1, X)
   Next X
For i = 2 To Application.WorksheetFunction.CountA(Sheet1.Range("A:A"))
a = Len(Me.TextBox2.Text)
If StrConv(Left(Sheet1.Cells(i, 2).Value, a), vbLowerCase) = StrConv(Left(Me.TextBox2.Text, a), vbLowerCase) Then
Me.ListBox1.AddItem Sheet1.Cells(i, 1).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 1) = Sheet1.Cells(i, 2).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 2) = Sheet1.Cells(i, 3).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 3) = Sheet1.Cells(i, 4).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 4) = Sheet1.Cells(i, 5).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 5) = Sheet1.Cells(i, 6).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 6) = Sheet1.Cells(i, 7).Value
End If
Next i

End Sub

Private Sub TextBox3_Change()
Dim i As Long
ListBox1.Clear
Me.ListBox1.AddItem
   For X = 1 To 7
     Me.ListBox1.List(0, X - 1) = Sheet1.Cells(1, X)
   Next X
For i = 2 To Application.WorksheetFunction.CountA(Sheet1.Range("A:A"))
a = Len(Me.TextBox3.Text)
If StrConv(Left(Sheet1.Cells(i, 3).Value, a), vbLowerCase) = StrConv(Left(Me.TextBox3.Text, a), vbLowerCase) Then
Me.ListBox1.AddItem Sheet1.Cells(i, 1).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 1) = Sheet1.Cells(i, 2).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 2) = Sheet1.Cells(i, 3).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 3) = Sheet1.Cells(i, 4).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 4) = Sheet1.Cells(i, 5).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 5) = Sheet1.Cells(i, 6).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 6) = Sheet1.Cells(i, 7).Value
End If
Next i
End Sub

Private Sub TextBox4_Change()
Dim i As Long
ListBox1.Clear
Me.ListBox1.AddItem
   For X = 1 To 7
     Me.ListBox1.List(0, X - 1) = Sheet1.Cells(1, X)
   Next X
For i = 2 To Application.WorksheetFunction.CountA(Sheet1.Range("A:A"))
a = Len(Me.TextBox4.Text)
If StrConv(Left(Sheet1.Cells(i, 4).Value, a), vbLowerCase) = StrConv(Left(Me.TextBox4.Text, a), vbLowerCase) Then
Me.ListBox1.AddItem Sheet1.Cells(i, 1).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 1) = Sheet1.Cells(i, 2).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 2) = Sheet1.Cells(i, 3).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 3) = Sheet1.Cells(i, 4).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 4) = Sheet1.Cells(i, 5).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 5) = Sheet1.Cells(i, 6).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 6) = Sheet1.Cells(i, 7).Value
End If
Next i
End Sub

Private Sub TextBox5_Change()
Dim i As Long
ListBox1.Clear
Me.ListBox1.AddItem
   For X = 1 To 7
     Me.ListBox1.List(0, X - 1) = Sheet1.Cells(1, X)
   Next X
For i = 2 To Application.WorksheetFunction.CountA(Sheet1.Range("A:A"))
a = Len(Me.TextBox5.Text)
If StrConv(Left(Sheet1.Cells(i, 5).Value, a), vbLowerCase) = StrConv(Left(Me.TextBox5.Text, a), vbLowerCase) Then
Me.ListBox1.AddItem Sheet1.Cells(i, 1).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 1) = Sheet1.Cells(i, 2).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 2) = Sheet1.Cells(i, 3).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 3) = Sheet1.Cells(i, 4).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 4) = Sheet1.Cells(i, 5).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 5) = Sheet1.Cells(i, 6).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 6) = Sheet1.Cells(i, 7).Value
End If
Next i
End Sub

Private Sub TextBox6_Change()
Dim i As Long
ListBox1.Clear
Me.ListBox1.AddItem
   For X = 1 To 7
     Me.ListBox1.List(0, X - 1) = Sheet1.Cells(1, X)
   Next X
For i = 2 To Application.WorksheetFunction.CountA(Sheet1.Range("A:A"))
a = Len(Me.TextBox6.Text)
If StrConv(Left(Sheet1.Cells(i, 6).Value, a), vbLowerCase) = StrConv(Left(Me.TextBox6.Text, a), vbLowerCase) Then
Me.ListBox1.AddItem Sheet1.Cells(i, 1).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 1) = Sheet1.Cells(i, 2).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 2) = Sheet1.Cells(i, 3).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 3) = Sheet1.Cells(i, 4).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 4) = Sheet1.Cells(i, 5).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 5) = Sheet1.Cells(i, 6).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 6) = Sheet1.Cells(i, 7).Value
End If
Next i
End Sub

Private Sub TextBox7_Change()
Dim i As Long
ListBox1.Clear
Me.ListBox1.AddItem
   For X = 1 To 7
     Me.ListBox1.List(0, X - 1) = Sheet1.Cells(1, X)
   Next X
For i = 2 To Application.WorksheetFunction.CountA(Sheet1.Range("A:A"))
a = Len(Me.TextBox7.Text)
If StrConv(Left(Sheet1.Cells(i, 7).Value, a), vbLowerCase) = StrConv(Left(Me.TextBox7.Text, a), vbLowerCase) Then
Me.ListBox1.AddItem Sheet1.Cells(i, 1).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 1) = Sheet1.Cells(i, 2).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 2) = Sheet1.Cells(i, 3).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 3) = Sheet1.Cells(i, 4).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 4) = Sheet1.Cells(i, 5).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 5) = Sheet1.Cells(i, 6).Value
Me.ListBox1.List(ListBox1.ListCount - 1, 6) = Sheet1.Cells(i, 7).Value
End If
Next i

End Sub
ไฟล์ตัวอย่างครับ
Book1.xlsm

ตัวอย่างรูปภาพครับ
1.JPG

Re: มีปัญาเกี่ยวกับการกรองข้อมูลจากการหาข้อมูลโดยใช้ VBA

Posted: Thu Oct 24, 2019 8:53 pm
by snasui
:D ควรจะให้ Search ทีเดียวเมื่อคีย์ครบแล้ว การให้คีย์ไป Search ไปจะต้องมีตัวแปรมารับค่าจาก TextBox เทียบกับค่าในเซลล์หรือตัวแปรที่แทนค่าในเซลล์ นอกจากนี้ยังไม่เหมาะที่จะใช้ Event TextChange เพราะ Code จะทำงานทุกอักขระที่คีย์

หากเลือกเป็นการ Search ทุกครั้งที่คีย์ใน TextBox ในส่วนของตัวแปรเช่นตั้งเป็น strTextSeach แล้วตรวจสอบว่า TextBox ใดมีค่าไม่ว่างบ้างให้นำค่าใน TextBox นั้นมาเชื่อมกันเช่นนี้เป็นต้น

ตัวอย่าง Code ซึ่งจะต้องปรับให้ตรงกับงานจริง Code นี้จะทำงานเมื่อกรอก TextBox1 แล้ว Enter ครับ

Code: Select all

Private Sub TextBox1_AfterUpdate()
    Dim i As Long
    Dim strRange As String
    Dim strTextSearch As String
    Dim a() As Variant
    Dim k As Integer
    Dim j As Integer
    Dim rall As Range
    Dim r As Range
    
    ListBox1.Clear
    If TextBox1.Text <> "" Then
        strTextSearch = TextBox1.Text
        ReDim Preserve a(k)
        a(k) = 1
        k = k + 1
    End If
    If TextBox2.Text <> "" Then
        strTextSearch = strTextSearch & TextBox2.Text
        ReDim Preserve a(k)
        a(k) = 2
        k = k + 1
    End If
    If TextBox3.Text <> "" Then
        strTextSearch = strTextSearch & TextBox3.Text
        ReDim Preserve a(k)
        a(k) = 3
        k = k + 1
    End If
    'Other remaining Textbox code
    For i = 2 To Application.WorksheetFunction.CountA(Sheet1.Range("A:A"))
        For j = 0 To UBound(a)
            strRange = strRange & Range("a" & i).Offset(0, j).Value
        Next j
        If strTextSearch = strRange Then
            With Me.ListBox1
                .AddItem Sheet1.Cells(i, 1).Value
                .List(ListBox1.ListCount - 1, 1) = Sheet1.Cells(i, 2).Value
                .List(ListBox1.ListCount - 1, 2) = Sheet1.Cells(i, 3).Value
                .List(ListBox1.ListCount - 1, 3) = Sheet1.Cells(i, 4).Value
                .List(ListBox1.ListCount - 1, 4) = Sheet1.Cells(i, 5).Value
                .List(ListBox1.ListCount - 1, 5) = Sheet1.Cells(i, 6).Value
                .List(ListBox1.ListCount - 1, 6) = Sheet1.Cells(i, 7).Value
            End With
        End If
    Next i
End Sub

Re: มีปัญาเกี่ยวกับการกรองข้อมูลจากการหาข้อมูลโดยใช้ VBA

Posted: Fri Oct 25, 2019 9:05 am
by boylee1928
ขอบคุณมากครับเเต่ผมอยากได้เเนวประมาณการกรองเเบบTextต่อTextเลยครับ

Re: มีปัญาเกี่ยวกับการกรองข้อมูลจากการหาข้อมูลโดยใช้ VBA

Posted: Fri Oct 25, 2019 9:20 pm
by snasui
:D ช่วยขยายความคำว่ากรองแบบ Text ต่อ Text พร้อมยกตัวอย่างมาเพิ่มเติมสัก 2-3 ตัวอย่าง จะได้เห็นว่าคีย์อย่างไร คำตอบเป็นอย่างไรครับ

Re: มีปัญาเกี่ยวกับการกรองข้อมูลจากการหาข้อมูลโดยใช้ VBA

Posted: Sat Oct 26, 2019 8:12 pm
by boylee1928
ตอนเเรกผมพิมพ์ใส่textbox2ไปก็จะขึ้นโชว์ค่าที่พิมพ์ไป
test1.JPG
แต่เมื่อผมพิมพ์ใส่textbox3ก็จะขึ้นโชว์ค่าที่Textbox3โดยไม่ได้ผ่านการกรองของtextbox2มาครับ
test2.JPG
คล้ายๆกับการใช้ฟังก์ชันFilterครับที่ผมต้องการ

Re: มีปัญาเกี่ยวกับการกรองข้อมูลจากการหาข้อมูลโดยใช้ VBA

Posted: Sat Oct 26, 2019 8:40 pm
by snasui
:D ถ้าให้ผ่านการกรองด้วยผมได้ตอบไปแล้วตามโพสต์ #2 ถ้าไม่ต้องผ่านการกรองก็ใช้ TextChange ของแต่ละ Object ตามที่เขียนมา ไม่ทราบติดปัญหาตรงไหนครับ

Re: มีปัญาเกี่ยวกับการกรองข้อมูลจากการหาข้อมูลโดยใช้ VBA

Posted: Tue Oct 29, 2019 1:26 pm
by boylee1928
รับทราบครับขอบคุณมากครับ