Excel VBA to applescript

J

justo

How do I refer to a cell relative to the activecell in
applscript and then make it the activecell? when apple
scripting?
The Excell 2004 applescript reference manual "How to reference cells and ranges" page 15-18 are all absolute
reference examples. As far as I can see.
 
J

JE McGimpsey

How do I refer to a cell relative to the activecell in
applscript and then make it the activecell? when apple
scripting?
The Excell 2004 applescript reference manual "How to reference cells and
ranges" page 15-18 are all absolute
reference examples. As far as I can see.

One way:

tell application "Microsoft Excel"
set rng to (get offset active cell row offset 2 column offset 3)
select rng
end tell
 
Top