Ola vonzuben, eu não consigo upar o arquivo porque estou no trabalho e é bloqueado, eu acho que consegui, segue o código que usei...
Sub InserirLinha()
Dim ultimaLinha As Integer
ultimaLinha = Cells(Rows.Count, "B").End(xlUp).Row
' InserirLinha Macro
'
Range("b1").Value = Range("B" & ultimaLinha) + 1
Range("A1:E1").Select
Selection.Copy
Range("A" & ultimaLinha & ":E" & ultimaLinha).Select
Selection.Insert Shift:=xlDown
With ActiveWorkbook.Worksheets("Plan1").Sort
.SetRange Range("B10:B10000")
.Header = xlNo
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
Application.CutCopyMode = False
End Sub
Postado : 01/02/2016 8:02 am