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.

Copiar columnas de una hoja a otra

publicado

Hola a todos (as)

 

Tengo el siguiente código que pasa cierta información de una hoja a otra, todo funciona bien, el único detalle es de que quisiera que no me sobreescibiera o se pegara siempre sobre la misma columna, si no que se pegara en la siguiente columna disponible, no se que me falta en el código para poderlo arreglar

Espero haberme dado entender

Sub cONCENTRADO()
'copia columnas a la TE-DESC
Sheets("TE-DESC").Select
Range("A4:B35").Select
Selection.Copy
Sheets("CONCENTRADO").Select
Range("A1").Select
ActiveSheet.Paste
End Sub

Featured Replies

publicado
Sub Concentrado()
'copia columnas a la TE-DESC
Application.ScreenUpdating = False
Sheets("TE-DESC").Range("A4:B35").Copy
Sheets("CONCENTRADO").Select
With ActiveSheet
   columnas = .UsedRange.Columns.Count
   If columnas = 1 Then columnas = 0
   .Range("A1").Offset(0, columnas).PasteSpecial
End With
Application.CutCopyMode = False
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.