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.

BUscar datos en otras hojas

publicado

Aunque ya existe el método de seleccionar todas las hojas y dar el comando control+b, les comparto esta forma..

podemos crear un botón en nuestra hoja de calculo para no entrar hasta el código.

Sub Macro1()

Dim x As String, Hoja As Worksheet, Nombre As String, msg As String

Nombre = InputBox("Introduce el nombre o dato a buscar:")

For Each Hoja In ThisWorkbook.Worksheets

On Error Resume Next

If Nombre <> "" Then

x = Hoja.Cells.Find(What:=Nombre, _

After:=Hoja.Cells(1), _

LookIn:=xlValues, _

LookAt:=xlPart, _

SearchOrder:=xlByRows, _

SearchDirection:=xlNext, _

MatchCase:=False).Address

If Err.Number = 0 Then

If msg = "" Then _

msg = "se ha encontrado el texto buscado en:" _

& Chr(13) & Chr(13)

msg = msg & Hoja.Name & "!" & x & Chr(13)

End If

End If

On Error GoTo 0

Next Hoja

If msg <> "" Then MsgBox msg

End Sub

saludos

Featured Replies

No hay posts para mostrar

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.