In article <ee8eecc.-1.RemoveThis@webcrossing.caR9absDaxw>, justo.RemoveThis@officeformac.com
wrote:
> 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
>> Stay informed about: Excel VBA to applescript