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.

Error en vínculos excel por cambio computadora

publicado

Hola,

Acabo de cambiar mi computadora y no me reconoce ningún vínculo en todos mis archivos de excel.

Antes la ruta era c/users/Andy/Documents y ahora es c/usuarios/Andrea/Documentos.

Quería saber si hay alguna forma de modificar la ruta masivamente o si debo cambiar la configuración del equipo cambiando usuarios e idioma

Espero que puedan ayudarme

Gracias

Andrea

Featured Replies

publicado
  • Autor

Gracias por la respuesta. El problema es que son cientos de archivos con muchs links entre sí y quería encontrar una forma más simple para cambiar todo sin tener que editar las fórmulas. Gracias de todas formas

publicado

Hola de nuevo @[uSER=67610]aparamio[/uSER]

Te dejo una opción con macros. Inserta un módulo en VBA y pega el siguiente código:

Sub CambiarHipervínculos()
Dim RutaAntigua As String
Dim RutaNueva As String
Dim h As Hyperlink
RutaAntigua = "c:\users\Andy\Documents"
RutaNueva = "c:\usuarios\Andrea\Documentos"
For Each h In ActiveSheet.Hyperlinks
x = InStr(1, h.Address, RutaAntigua)
If x > 0 Then
If h.TextToDisplay = h.Address Then
h.TextToDisplay = RutaNueva
End If
h.Address = Application.WorksheetFunction. _
Substitute(h.Address, RutaAntigua, RutaNueva)
End If
Next
End Sub[/CODE]

Comentas! Dios te bendiga!

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.