Ver Mensaje Individual
  #4 (permalink)  
Antiguo 17/11/2013, 17:29
Avatar de mrocf
mrocf
 
Fecha de Ingreso: marzo-2007
Ubicación: Bs.As.
Mensajes: 1.103
Antigüedad: 17 años, 1 mes
Puntos: 88
Respuesta: file debajo de fila

Hola! Timoteo (y elunico). Un método que suele ser eficiente es el siguiente:

Código PHP:
Sub Agregar_Linea_2()
Application.ScreenUpdating False
With Range
("a1", [a1].End(xlDown))
  .
EntireColumn.Insert
  With 
.Offset(, -1)
    .
Formula "=row()"
    
.Value = .Value
    
.Offset(.Count) = "=0.5 + " & .Cells(1).Address(00)
    .
Offset(.Count).Value = .Offset(.Cells.Count).Value
    With 
.Resize(* .Count).EntireRow
      
.EntireColumn.Sort key1:=.Cells(1), order1:=xlAscendingHeader:=xlYes
    End With
    
.EntireColumn.Delete
  End With
End With
Application
.ScreenUpdating True
End Sub 
¡Espero te sea de utilidad!
Saludos, Cacho R.