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.

Ayuda Mostar y ocultar Hipervinculos en un archivos de excel

publicado

Buenas a todos

Estoy creando en excel una herramienta que me ayude en el trabajo me gustaria saber si alguno de ustedes me puede ayudar con la siguiente duda:

ocupo que cuando voy a (Cálculo Adeudos Patronales, datos generales y en la celda Tipo de Cálculo:) que cuando selecciono alguno de los tres (necesarias +180, necesarias -180 y no necesarias se me oculten las que no voy a utilizaar)

no se si esto se pueda hacer con un macro o con que.

adjunto el archivo.

prueba.rar

Featured Replies

publicado

Buenas noches:

Pega estas macros.

Cambia los vínculos de las etiquetas por tus macros y listo.

Sub A_01_IR_A_FACTORES()

Application.ScreenUpdating = False

Sheets("Factores").Visible = True

Sheets("Cálculos").Visible = False

Sheets("+180").Visible = False

Sheets("-180").Visible = False

Sheets("No Nec").Visible = False

Application.ScreenUpdating = True

End Sub

Sub A_02_IR_A_CÁLCULOS()

Application.ScreenUpdating = False

Sheets("Cálculos").Visible = True

Sheets("Factores").Visible = False

Sheets("+180").Visible = False

Sheets("-180").Visible = False

Sheets("No Nec").Visible = False

Application.ScreenUpdating = True

End Sub

Sub A_03_IR_A_MÁS_180_DÍAS()

Application.ScreenUpdating = False

Sheets("+180").Visible = True

Sheets("Cálculos").Visible = False

Sheets("Factores").Visible = False

Sheets("-180").Visible = False

Sheets("No Nec").Visible = False

Application.ScreenUpdating = True

End Sub

Sub A_03_IR_A_MENOS_180_DÍAS()

Application.ScreenUpdating = False

Sheets("-180").Visible = True

Sheets("Cálculos").Visible = False

Sheets("Factores").Visible = False

Sheets("+180").Visible = False

Sheets("No Nec").Visible = False

Application.ScreenUpdating = True

End Sub

Sub A_01_IR_A_NO_NECESARIOS()

Application.ScreenUpdating = False

Sheets("No Nec").Visible = True

Sheets("Cálculos").Visible = False

Sheets("Factores").Visible = False

Sheets("-180").Visible = False

Sheets("+180").Visible = False

Application.ScreenUpdating = True

End Sub

P.D.: Por si necesitas tener todas las hojas visibles, pega esta macro y la ejecutas desde donde quieras:

Sub A_06_MOSTRAR_TODAS_LAS_HOJAS()

Application.ScreenUpdating = False

For Each N In Sheets

N.Visible = True

Next N

Sheets("Cálculos").Select

Range ("A1").Select

Application.ScreenUpdating = True

End Sub

publicado
  • Autor

muchas gracias por la respuesta muy amable...

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.