Quiero filtrar datos de un ComboBox a un listbox y dos Textbox
Tengo una tabla de de 12 columnas con las cual filtro a través de un Combobox en un listbox. Las columnas 11 y 12 deben ser filtradas en dos textbox correspondientes. Este es el código que he trabajado hasta el momento. Lo que intento es accionar este "filtro" con un solo Command button y que me filtre en listbox como en los dos textbox al mismo tiempo. Ya intente los dos códigos por separados y funcionan el problema viene cuando debo unificar ambos objetos (listbox y textbox) con un solo command button. Agradeciera mucho a quien me pueda ayudar con esto ya que he estado buscando información y solo encuentro como vincular un command button con un objeto a la vez, pero no dos.
Mostrar resultado en ListBox y Textbox
Private Sub CommandButton1_Click()
Aquí van los datos al textbox'
If ComboBox1 = "" Then Exit Sub
Set h = Sheets("T_APPS")
Set b = h.Range("A57:A3500").Find(ComboBox1, LookIn:=xlValues, Lookat:=xlWhole)
If Not b Is Nothing Then
TextBox1 = h.Range("L" & b.Row)
TextBox2 = h.Range("M" & b.Row)
Else
MsgBox "Not Found", vbInformation
Else If
Aqui viene los datos de listbox'
On Error GoTo Errores
If ComboBox1.Value = "" Then Exit Sub
ListBox1.Clear
j = 1
Filas = Range("a56").CurrentRegion.Rows.Count + 55
For i = 57 To Filas
If LCase(Cells(i, j).Offset(0, 0).Value) Like "*" & LCase(ComboBox1.Value) & "*" Then
ListBox1. AddItem Cells(i, j)
ListBox1. List(ListBox1.ListCount - 1, 1) = Cells(i, j).Offset(0, 1)
ListBox1. List(ListBox1.ListCount - 1, 2) = Cells(i, j).Offset(0, 2)
ListBox1. List(ListBox1.ListCount - 1, 3) = Cells(i, j).Offset(0, 3)
ListBox1. List(ListBox1.ListCount - 1, 4) = Cells(i, j).Offset(0, 4)
ListBox1. List(ListBox1.ListCount - 1, 5) = Cells(i, j).Offset(0, 5)
ListBox1. List(ListBox1.ListCount - 1, 6) = Cells(i, j).Offset(0, 6)
ListBox1. List(ListBox1.ListCount - 1, 7) = Cells(i, j).Offset(0, 7)
ListBox1. List(ListBox1.ListCount - 1, 8) = Cells(i, j).Offset(0, 8)
ListBox1. List(ListBox1.ListCount - 1, 9) = Cells(i, j).Offset(0, 9)
Else
Next i
Exit Sub
Errores:
MsgBox "No se encuentra", vbExclamation
Exit Sub
End Sub