AppleScript: sort range in excel file

(* excel_sortrange.applescript *)

tell application "Microsoft Excel"
    tell active sheet
        sort range "A1" order1 sort ascending key1 column 1 order2 sort ascending key2 column 2 header header no without match case
    end tell
end tell