.
En el ejemplo que se presenta se muestra como acelerar la búsqueda en un listbox mientras se escribe en un textbox, anteriormente se mostró como buscar en listbox mientras se escribe en textbox, es por ello que en este post no se explicará el funcionamiento completo, sino como hacer para acelerar la búsqueda, ya que si la base de datos es muy grande puede tardar en forma innecesaria la búsqueda de datos.
⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛
Quizás también sea útil:
Listbox que depende de otro listbox y combobox
Pasar datos de un listbox o otro listbox con Enter
Mostrar en el mismo listbox, suma, cuenta y promedio
⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛⇛
Antes de seguir recomiendo leer un excelente libro sobre Excel que te ayudará operar las planillas u hojas de cálculo, haz click acá, si quieres aprender sobre Excel, en inglés, entonces debes hacer click here. Si lo que necesitas es aprender o profundizar sobre la programación de macros con VBA este es unos de los mejores cursos on line que he visto en internet.
if (payload.eventType == ‘subscribe’) {
// Add code to handle subscribe event.
} else if (payload.eventType == ‘unsubscribe’) {
// Add code to handle unsubscribe event.
}
if (window.console) { // for debugging only
window.console.log(‘YT event: ‘, payload);
}
}
La macro que se presenta, a diferencia de la anterior, no busca absolutamente nada hasta que se hayan cargado por lo menos cuatro caracteres, es decir empieza a buscar registros que coincidan con esos tres caracteres ingresados, ello permite de entrada achicar en forma considerable los datos coincidentes acelerando la búsqueda y carga en el listbox.
Para lograr esto se apela a lo visto en el post trabajando con cadena de textos, más específicamente se cuenta la cantidad de caracteres, en este caso si la cantidad de caracteres ingresados en el textbox, de donde surgen los datos para la búsqueda en la base de datos, es menor a 4, la macro no hace absolutamente nada, solo empieza a buscar cuando se ingresen cuatro caracteres, reduciendo notablemente los registros de la base de datos que coinciden con lo escrito y que se cargarán en el listbox, ellos se logra con ese sencillo código.
If Len(TextBox1) < 4 Then Exit Sub
Código que se inserta en un módulo
Public filaedit
Sub muestra1()
UserForm1.Show
End Sub
Código que se inserta en un Formulario
Private Sub CommandButton1_Click()
Unload Me
End Sub
Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
Set a = Sheets(«Hoja1»)
fila = Me.ListBox1.ListIndex
filaedit = a.Range(«A» & Rows.Count).End(xlUp).Row + 1
a.Cells(filaedit, «A») = ListBox1.List(fila, 0)
a.Cells(filaedit, «B») = ListBox1.List(fila, 1)
a.Cells(filaedit, «C») = ListBox1.List(fila, 2)
End Sub
Private Sub TextBox1_Change()
On Error Resume Next
Set b = Sheets(«Hoja2»)
uf = b.Range(«A» & Rows.Count).End(xlUp).Row
If Trim(TextBox1.Value) = «» Then
‘Me.ListBox1.List() = b.Range(«A2:H» & uf).Value
Me.ListBox1.RowSource = «Hoja2!A2:C» & uf
Exit Sub
End If
If Len(TextBox1) < 4 Then Exit Sub
b.AutoFilterMode = False
Me.ListBox1 = Clear
Me.ListBox1.RowSource = Clear
For i = 2 To uf
strg = b.Cells(i, 1).Value
If UCase(strg) Like «*» & UCase(TextBox1.Value) & «*» Then
Me.ListBox1.AddItem b.Cells(i, 1)
Me.ListBox1.List(Me.ListBox1.ListCount – 1, 1) = b.Cells(i, 2)
Me.ListBox1.List(Me.ListBox1.ListCount – 1, 2) = b.Cells(i, 3)
‘Me.ListBox1.List(Me.ListBox1.ListCount – 1, 3) = b.Cells(i, 4)
‘Me.ListBox1.List(Me.ListBox1.ListCount – 1, 4) = b.Cells(i, 5)
‘Me.ListBox1.List(Me.ListBox1.ListCount – 1, 5) = b.Cells(i, 6)
‘Me.ListBox1.List(Me.ListBox1.ListCount – 1, 6) = b.Cells(i, 7)
‘Me.ListBox1.List(Me.ListBox1.ListCount – 1, 7) = b.Cells(i, 8)
End If
Next i
Me.ListBox1.ColumnWidths = «150 pt;100pt;50pt»
End Sub
Private Sub UserForm_Initialize()
Dim fila As Long
Application.DisplayAlerts = False
Application.ScreenUpdating = False
Set b = Sheets(«Hoja2»)
uf = b.Range(«A» & Rows.Count).End(xlUp).Row
uc = b.Cells(1, Columns.Count).End(xlToLeft).Address
wc = Mid(uc, InStr(uc, «$») + 1, InStr(2, uc, «$») – 2)
With Me.ListBox1
.ColumnCount = 3
.ColumnWidths = «150 pt;100pt;50pt»
.RowSource = «Hoja2!A2:» & wc & uf
End With
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
On Error GoTo Fin
If CloseMode <> 1 Then Cancel = True
Fin:
End Sub
Public filaedit
Sub muestra1()
UserForm1.Show
End Sub
Private Sub CommandButton1_Click()
Unload Me
End Sub
Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
Set a = Sheets(«Hoja1»)
fila = Me.ListBox1.ListIndex
filaedit = a.Range(«A» & Rows.Count).End(xlUp).Row + 1
a.Cells(filaedit, «A») = ListBox1.List(fila, 0)
a.Cells(filaedit, «B») = ListBox1.List(fila, 1)
a.Cells(filaedit, «C») = ListBox1.List(fila, 2)
End Sub
Private Sub TextBox1_Change()
On Error Resume Next
Set b = Sheets(«Hoja2»)
uf = b.Range(«A» & Rows.Count).End(xlUp).Row
If Trim(TextBox1.Value) = «» Then
‘Me.ListBox1.List() = b.Range(«A2:H» & uf).Value
Me.ListBox1.RowSource = «Hoja2!A2:C» & uf
Exit Sub
End If
If Len(TextBox1) < 4 Then Exit Sub
b.AutoFilterMode = False
Me.ListBox1 = Clear
Me.ListBox1.RowSource = Clear
For i = 2 To uf
strg = b.Cells(i, 1).Value
If UCase(strg) Like «*» & UCase(TextBox1.Value) & «*» Then
Me.ListBox1.AddItem b.Cells(i, 1)
Me.ListBox1.List(Me.ListBox1.ListCount – 1, 1) = b.Cells(i, 2)
Me.ListBox1.List(Me.ListBox1.ListCount – 1, 2) = b.Cells(i, 3)
‘Me.ListBox1.List(Me.ListBox1.ListCount – 1, 3) = b.Cells(i, 4)
‘Me.ListBox1.List(Me.ListBox1.ListCount – 1, 4) = b.Cells(i, 5)
‘Me.ListBox1.List(Me.ListBox1.ListCount – 1, 5) = b.Cells(i, 6)
‘Me.ListBox1.List(Me.ListBox1.ListCount – 1, 6) = b.Cells(i, 7)
‘Me.ListBox1.List(Me.ListBox1.ListCount – 1, 7) = b.Cells(i, 8)
End If
Next i
Me.ListBox1.ColumnWidths = «150 pt;100pt;50pt»
End Sub
Private Sub UserForm_Initialize()
Dim fila As Long
Application.DisplayAlerts = False
Application.ScreenUpdating = False
Set b = Sheets(«Hoja2»)
uf = b.Range(«A» & Rows.Count).End(xlUp).Row
uc = b.Cells(1, Columns.Count).End(xlToLeft).Address
wc = Mid(uc, InStr(uc, «$») + 1, InStr(2, uc, «$») – 2)
With Me.ListBox1
.ColumnCount = 3
.ColumnWidths = «150 pt;100pt;50pt»
.RowSource = «Hoja2!A2:» & wc & uf
End With
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub
Private Sub UserForm_QueryClose(Cancel As Integer, CloseMode As Integer)
On Error GoTo Fin
If CloseMode <> 1 Then Cancel = True
Fin:
End Sub
.
If this post was helpful INVITE ME A COFFEE and so help keep up the page, CLICK to download free example.
Si te gustó por favor compártelo con tus amigos
If you liked please share it with your friends