Thread
:
How do you move the selection one cell to the right in a macro
View Single Post
#
2
Posted to microsoft.public.excel.programming
Chip Pearson
external usenet poster
Posts: 7,247
How do you move the selection one cell to the right in a macro
See the Offset command. E.g.,
ActiveCell.Offset(0, 1).Select
"fder" wrote in message
...
How do you move the selected cell in any direction from any
arbitrary
position? I'm just using the
VB
editor.
Reply With Quote
Chip Pearson
View Public Profile
Find all posts by Chip Pearson