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.

Filtrar y resaltar permanentemente

publicado

Buenas Tardes:

He realizado una macro en la cual realiza un filtrado de una lista, lo que no puedo resolver es que una vez filtrado el valor se resalte en forma permanente.

Lo que seria parecido a buscar y resaltar.-

Desde ya muchas Gracias

Copia de MOTOROLA NEGRO Y BLANCO STOCK1.rar

Featured Replies

publicado

Hola! Ricardo: Incorpora el siguiente código:

Sub Buscar()
DatoBuscado = InputBox("¡Escriba el nombre del artículo!", "BUSCAR", "")
Application.ScreenUpdating = False: ActiveSheet.AutoFilterMode = False
With Range("d2", Cells(Rows.Count, "d").End(xlUp))
.Offset(, -3).Resize(, 8).Interior.ColorIndex = xlColorIndexNone
.AutoFilter 1, "*" & DatoBuscado & "*"
If WorksheetFunction.Subtotal(3, .Cells) > 1 And DatoBuscado <> "" Then _
.Offset(1, -3).Resize(.Rows.Count - 1, 8).Interior.Color = vbYellow
End With
ActiveSheet.AutoFilterMode = False: Application.ScreenUpdating = True
End Sub[/PHP]

No me queda claro que deseas hacer después de rellenar las celdas con color... Pero "eso" lo manejas con la segunda aparición (al final del código) de:

[color=#ff8c00][b]ActiveSheet.AutoFilterMode = False[/b][/color]

(la dejas o la quitas a tu gusto)

Saludos, Cacho R.

[u]P.D.[/u]

No quería dejar de mencionar que te he cambiado ligeramente la modalidad de búsqueda.

Por ejemplo si escribes en el InputBox [color=#ff8c00][b]12-25[/b][/color], te busca las celdas de la columna D que contengan esa entrada.

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.