Excel Macro

R

RCB

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

FSt1

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
 
R

RCB

Thank you!
--
RCB


FSt1 said:
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
 
Top