Getting Charts from Excel via Applescript?

V

Vik Rubenfeld

Is it possible to get a chart from Excel using Applescript, and paste it
to the clipboard?
 
J

JE McGimpsey

Vik Rubenfeld said:
Is it possible to get a chart from Excel using Applescript, and paste it
to the clipboard?

One way (XL04):

tell application "Microsoft Excel"
copy object chart object 1 of active sheet
end tell
 
Top