Hi,
aa
In the sort dialog box you have an option to specify whether your data has a header row or not. If you specify a header row then the first row will be excluded from the sort.
If you are using a macro then you have to include that option as one of the sort parameters. Your VBA code will be something like this:
Range("A10:B14").Select
Selection.Sort Key1:=Range("A11"), Order1:=xlAscending, Header:=xlYes, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
Regards.
Bookmarks