Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi All
How do I simulate the Down arrow keystroke in VBA? I just need the cursor to go down one cell. Mant Thanks - Grant |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
ActiveCell.Offset(1, 0).Select
Grant Reid wrote: Hi All How do I simulate the Down arrow keystroke in VBA? I just need the cursor to go down one cell. Mant Thanks - Grant |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi
Thanks for the help. Much appreciated Kind Regards - Grant |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Here's one (of many) ways...
ActiveCell.Offset(1, 0).Select -- Message posted from http://www.ExcelForum.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 - Macro (VB) code for arrow down & arrow up | Excel Discussion (Misc queries) | |||
Using end-arrow down or end-arrow up in a macro | Excel Discussion (Misc queries) | |||
why dont shift+arrow or ctrl+arrow work in 2007 | Excel Discussion (Misc queries) | |||
How to do the following by pressing the down arrow or up arrow key? | Excel Discussion (Misc queries) | |||
do a `down arrow' | Excel Programming |