when i am trying to sort range N:O
N1 and O1 have headers when i am using this comment
it sorted the entire range means the heading is also sorted

Sub test()
Columns("n:o").Select
Selection.Sort Key1:=Range("n2"), Order1:=xlAscending, Header:=xlGuess, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal

End Sub

anyone correct this?