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.

Macro insertar comentarios

publicado

Hola tengo un archivo en el que tengo bastantes formulas y para que no las modifiquen tengo protegida la hoja con un macro, esto me permite trabajar únicamente sobre las celdas que no están protegidas, me permite usar filtros. Lo que no he logrado conseguir es que a pesar de esta condición me permita insertar comentarios en la celdas no bloqueadas, esto es para cuando necesito agregar algún comentario extra a la información que va en la celda. Lamentablemente el tamaño de archivo es bastante grande para poderlo adjuntar pero les comparto el código para ver si me pueden ayudar diciéndome que tengo que agregar para al codigo para que me me permita la accion arriba mencionada.

Saludos

Private Sub Workbook_Open()

With Worksheets("Listado")

.Protect Password:="1602", AllowFiltering:=True, userinterfaceonly:=True, AllowInsertingHyperlinks:=True

.EnableOutlining = True

End With

End Sub

Featured Replies

publicado

Saludos.

Intenta con la siguiente macro.

Private Sub Workbook_Open()
With Worksheets("Listado")
.Protect Password:="1602", AllowFiltering:=True, _
userinterfaceonly:=True, AllowInsertingHyperlinks:=True, _
DrawingObjects:=False, Contents:=True, Scenarios:=True
.EnableOutlining = True
End With
End Sub
[/HTML]

Atte.

joshua

publicado
  • Autor

Joshua , mil gracias, es justo lo que necesitaba .

Caso cerrado, solucionado exitosa mente !!!!

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.