AppleScript: change selected range in excel file

(* excel_selection.applescript *)

tell application "Microsoft Excel"
    select range "A1"
    delay 3
    select (cell 6 of row 10 of active sheet)
    delay 3
    select range "B10:C14"
end tell