Can anyone tell me the macro language to instruct the cursor to move over x
number of cells?
--
RCB

RE: Excel Macro by FSt1

FSt1
Tue Jul 22 14:41:02 CDT 2008

hi
activecell.offset(0,x).select

the offset number are offset(row,column)
row - negative numbers = left
positive numbers = right
column = negative numbers = up
positive numbers = down

regards
FSt1


"RCB" wrote:

> Can anyone tell me the macro language to instruct the cursor to move over x
> number of cells?
> --
> RCB

RE: Excel Macro by RCB

RCB
Wed Jul 23 08:36:00 CDT 2008

Thank you!
--
RCB


"FSt1" wrote:

> hi
> activecell.offset(0,x).select
>
> the offset number are offset(row,column)
> row - negative numbers = left
> positive numbers = right
> column = negative numbers = up
> positive numbers = down
>
> regards
> FSt1
>
>
> "RCB" wrote:
>
> > Can anyone tell me the macro language to instruct the cursor to move over x
> > number of cells?
> > --
> > RCB