Saltar al contenido
View in the app

A better way to browse. Learn more.

Ayuda Excel

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Textbox buscador por filtros y por fechas

publicado

Ola que tal disculpen por la molestia, tengo un inconveniente con unos códigos para lograr insertar al FromUser, para un buscador y filtrador en el Textbox, espero que me brinden su ideas,

gracias!!

Ante mano les agradezco mucho por su atención.

Buscadores.rar

Featured Replies

publicado
  • Autor

ah le agregue unos codigos para que los datos del ListBox importe los datos señalados a otro excel y a su vez uno para imprimir.

publicado

En el boton Buscar agrega esta funcion:

Private Sub BUSCARA_Click()

Dim i As Double, f As Double

i = CDate(TextBox6)

f = CDate(TextBox7)

Range("A1").Select

ActiveSheet.Range("$A$1:$E$2654").AutoFilter Field:=2, _

Criteria1:=">=" & i, Operator:=xlAnd, Criteria2:="<=" & f

ActiveSheet.AutoFilter.ApplyFilter

End Sub

publicado

Esta otra funciona actualiza el Listbox:

Private Sub BUSCARA_Click()

Dim i As Double, f As Double

Rem Aplica el Filtro conforme la Fecha

i = CDate(TextBox6)

f = CDate(TextBox7)

Range("A1").Select

ActiveSheet.Range("$A$2:$E$2654").AutoFilter Field:=2, _

Criteria1:=">=" & i, Operator:=xlAnd, Criteria2:="<=" & f

ActiveSheet.AutoFilter.ApplyFilter

Rem Actualiza el Listbox para mostrar solo los datos filtrados

Sheets("Hoja1").Select

ListBox1.Clear

With ListBox1

.ColumnCount = 5

.ColumnWidths = "50 pt;80 pt;60pt;50pt;50pt"

.ColumnHeads = True

End With

ListBox1.List = Range("a2:E230").SpecialCells(xlCellTypeVisible).Value

End Sub

publicado
  • Autor

Muchas gracias Compaq es justo lo que necesitaba, TEMA SOLUCIONADO

Archivado

Este tema está ahora archivado y está cerrado a más respuestas.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.