Copiar contenido de hojas

Aretradeser

Board Regular
Joined
Jan 16, 2013
Messages
176
Office Version
  1. 2013
Platform
  1. Windows
Buenas noches,
Tengo dos libros excel (Libro1 y Libro2) en la misma carpeta, y pretendo lo siguiente:
Ir copiando el contenido de cada una de las hojas de Libro1 en el Libro2; de tal manera que, copie el contenido de la Hoja1 del Libro1 en la Hoja1 del Libro2; que, al copiar el contenido de la Hoja2 del Libro1, cree antes la Hoja 2 en el Libro2, y copie aquí su ciontenido; que, al copiar el contenido de la Hoja3 del Libro1, cree antes la Hoja3 en el Libro2 y copie aquí su contenido, y así, sucesivamente.
He creado el siguiente cógigo con la grabadora de macros:
HTML:
Sub CopiarHojas2()

    Application.ScreenUpdating = False
    Workbooks("Libro1.xls").Activate
    Range("A1").Select
    Range(Selection, Selection.End(xlToRight)).Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Workbooks.Open ThisWorkbook.Path & "\" & "Libro2.xls"
    ActiveSheet.Paste
    Workbooks("Libro2.xls").Activate
    Sheets.Add
    Sheets("Hoja2").Select
    Application.CutCopyMode = False
    Sheets("Hoja2").Move After:=Sheets(2)
    Workbooks("Libro1.xls").Activate
    Range("A1").Select
    Range(Selection, Selection.End(xlToRight)).Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Workbooks("Libro2.xls").Activate
    ActiveSheet.Paste
    Workbooks("Libro2.xls").Activate
    Sheets.Add
    Sheets("Hoja3").Select
    Application.CutCopyMode = False
    Sheets("Hoja3").Move After:=Sheets(3)
    Workbooks("Libro1.xls").Activate
    Range("A1").Select
    Range(Selection, Selection.End(xlToRight)).Select
    Range(Selection, Selection.End(xlDown)).Select
    Selection.Copy
    Application.ScreenUpdating = True
    Application.CutCopyMode = False
    Range("A1").Select
End Sub
Con este código llego hasta copiar tres Hojas, pero qué modificaciones habría que efectuar a este código para el caso de que el Libro1 tuviese "x" Hojas?
Muchas gracias,
saludos.
 

Excel Facts

What is =ROMAN(40) in Excel?
The Roman numeral for 40 is XL. Bill "MrExcel" Jelen's 40th book was called MrExcel XL.
Veo que usted ya tiene más de 35 mensajes aquí. ¿Pudo usted conseguir ayuda con el problema descrito aquí? ¿O todavía queda pendiente?
 
Upvote 0

Forum statistics

Threads
1,223,943
Messages
6,175,547
Members
452,652
Latest member
eduedu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top