AppleScript: activate sheet in excel

(* excel_activatesheet.applescript *)

tell application "Microsoft Excel"
    set activesheet to get entry index of active sheet
    activate object sheet 1
    delay 2
    activate object sheet 2
    delay 2
    activate object sheet 3
end tell