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.

Buscador de archivos Excel

publicado

Espero que a base de insistir en ciertos temas la gente se quede con la copla, porqué el tema ya huele.

Macro para buscar archivos en un directorio.

Se pregunta con un InputBox el nombre o parte del nombre del archivo Excel a buscar.

Sub AbrirArchivo()

Directorio = "C:\" '<======= Directorio de búsqueda por defecto
Solicitud = "Nombre de archivo Excel" & vbLf & "(Admite caracteres comodín)"
Título = "Buscador de archivos en " & Directorio
FiltroExcel = ".xl*"


Set Dialogo = Application.FileDialog(msoFileDialogFilePicker)
With Dialogo
.AllowMultiSelect = False
.InitialView = msoFileDialogViewDetails
.InitialFileName = Directorio & InputBox(Solicitud, Título) & FiltroExcel
.ButtonName = "Abrir archivo"
.Title = "Seleccionar archivo"
.Show

For Each Libro In .SelectedItems
Workbooks.Open Libro
Next


End With


End Sub


[/CODE]

Seeedddd bueeeeeenossssss

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.