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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top