< Zurück

02.12.2012 19:37:00 • Categories: Applescript, Excel • Tags: Applescript, Excel

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

 


< Zurück | ^ nach oben