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 que automáticamente  rellene celdas de 2 en 2 

publicado

Macro que automáticamente  rellene celdas de 2 en 2  cuando se escriba algún texto y  macro para que cuando se borre el contenido de celdas automáticamente se borre un rango determinado

Gracias

Featured Replies

publicado
  • Autor

Saludos Antoni

Ejemplo cuando escriba un texto  en la celda A1, que automáticamente se rellene con el mismo texto la calda A3, A5, A7,A9 , A11. Así sucesivamente en un rango determinado.

Y otro macro que al borrar el contenido de una celda, se borre a la vez un rango determinado   ejemplo borro A1 y se borren el Rango (E1:E20)

publicado

Pon esta macro en la hoja:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$1" Then
   If Target = "" Then
      Range("E1:E20").ClearContents     'Borra el rango E1:E20 si se borra A1
   Else
      Range("A3,A5,A7,A9,A11") = Target 'Duplica A1 en A3,A5,A7,A9,A11
   End If
End If
End Sub

 

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.