Pode-se utilizar conforme a sub ordena abaixo, e aciona-la a cd inclusão de registro. (na ultima linha do codigo de inclusão)
...
MsgBox "Cadastro realizado com sucesso.", vbDefaultButton1, "C A D A S T R O"
Call Ordena
end sub
Private Sub Ordena()
Dim lRow As Long
lRow = Cells(Cells.Rows.Count, "B").End(xlUp).Row
Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
ActiveWorkbook.Worksheets("Banco").Sort.SortFields.Clear
ActiveWorkbook.Worksheets("Banco").Sort.SortFields.Add Key:=Range("B2"), _
SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
With ActiveWorkbook.Worksheets("Banco").Sort
.SetRange Range("B2:N" & lRow)
.Header = xlNo
.MatchCase = False
.Orientation = xlTopToBottom
.SortMethod = xlPinYin
.Apply
End With
End Sub
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 13/04/2013 9:06 am