Pregunta en
Microsoft Excel
Insertar filas mediante macro en Excel 2010
Tengo una macro para insertar una fila con los datos de la fila anterior: Sub Insertar() Dim fila As Integer fila = ActiveCell.Row Rows(fila).Insert Shift:=xlDown If fila = 4 Then Rows(fila + 1).Copy Else Rows(fila + 1).Copy Rows(fila).PasteSpecial...