I am trying to sort in excel using VBA.
My code is
Worksheets("Information").Range("N69:R1500").Sort _
Key1:=Worksheets("Information").Range("R1500"), _
Key2:=Worksheets("Information").Range("O69")
Problem is that its starts at the N,1500 and moves up to 1499, 1498, and so on. I...