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.

Hipervinculo hacia la celda

publicado

Hola a tod@s.

Agradezco de antemano su tiempo y respuesta a los siguiente.

En la hoja "RESUMEN" se encuentran los códigos de clientes y en las siguientes hojas se nombran cada código de cliente. Entonces lo que se requiere es que, por ejemplo, que en la hoja "A 030-028" se crea un hipervínculo hacia la hoja "RESUMEN", PERO con dirección hacia la celda A4 ya que es el nombre de la hoja "A 030-028". Y así sucesivamente con las demás hojas. Lo haría manualmente pero son mas de 800 hojas. Creo que esto solo se puede lograr con Macros, pero si hay la posibilidad de realizar sin ello estaría perfecto.

Saludos

PRUEBA.xlsx

Featured Replies

publicado
Sub LinkToResumen()
Application.ScreenUpdating = False
For Each hoja In Sheets
   If Not hoja.Name = "RESUMEN" Then
      Set cliente = Sheets("RESUMEN").Columns("A").Find(hoja.Name, , , xlWhole)
      If Not cliente Is Nothing Then
         hoja.Hyperlinks.Add Anchor:=hoja.Range("A1"), Address:="", _
            SubAddress:="RESUMEN!" & cliente.Address, TextToDisplay:="RESUMEN"
      End If
   End If
Next
Application.ScreenUpdating = True
End Sub

 

publicado
  • Autor
Hace 11 horas, Antoni dijo:

Sub LinkToResumen()
Application.ScreenUpdating = False
For Each hoja In Sheets
   If Not hoja.Name = "RESUMEN" Then
      Set cliente = Sheets("RESUMEN").Columns("A").Find(hoja.Name, , , xlWhole)
      If Not cliente Is Nothing Then
         hoja.Hyperlinks.Add Anchor:=hoja.Range("A1"), Address:="", _
            SubAddress:="RESUMEN!" & cliente.Address, TextToDisplay:="RESUMEN"
      End If
   End If
Next
Application.ScreenUpdating = True
End Sub

 

Hola @Antoni, estoy muy agradecido por tu respuesta y tiempo.
Doy por terminado el tema

Saludos.

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.