Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Using Excel's "Record" macro ignores arrow movements. Could someone please
give me the macro code for down one cell and up one cell. Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Grindy,
To go up one cell... Sub OneUp() If ActiveCell.Row 1 Then ActiveCell.Offset(-1, 0).Select End If End Sub Going down use... ActiveCell.Offset(1, 0).Select Ed Ferrero www.edferrero.com |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks for the quick response Ed. A related question...
What is the purpose of the "If/Then" part of your code, ie. If ActiveCell.Row 1 Then Just trying to learn why it is needed. Thanks again, bob "Ed Ferrero" wrote: Hi Grindy, To go up one cell... Sub OneUp() If ActiveCell.Row 1 Then ActiveCell.Offset(-1, 0).Select End If End Sub Going down use... ActiveCell.Offset(1, 0).Select Ed Ferrero www.edferrero.com |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi Grindy,
Thanks for the quick response Ed. A related question... What is the purpose of the "If/Then" part of your code, ie. If ActiveCell.Row 1 Then Just trying to learn why it is needed. If the active cell is in row 1, going up one cell will go to row zero, which does not exist - you will get an error. Ed Ferrero www.edferrero.com |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If the ActiveCell is on Row 1, you can't go up (the Offset function would
generate an error if you tried)... the If test makes sure the code doesn't try. By the way, it might not be clear from Ed's posting, but you don't need that test for the OneDown macro, but you should test to make sure you aren't at the bottom of the worksheet... Sub OneDown() If ActiveCell.Row < ActiveSheet.Rows.Count Then ActiveCell.Offset(1, 0).Select End If End Sub -- Rick (MVP - Excel) "Grindy" wrote in message ... Thanks for the quick response Ed. A related question... What is the purpose of the "If/Then" part of your code, ie. If ActiveCell.Row 1 Then Just trying to learn why it is needed. Thanks again, bob "Ed Ferrero" wrote: Hi Grindy, To go up one cell... Sub OneUp() If ActiveCell.Row 1 Then ActiveCell.Offset(-1, 0).Select End If End Sub Going down use... ActiveCell.Offset(1, 0).Select Ed Ferrero www.edferrero.com |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Wow, you 2 are great!
I completly understand now, and really appreciate both of you taking the time to explain this stuff to a VB newbee... I totally get it.... :) bob "Rick Rothstein" wrote: If the ActiveCell is on Row 1, you can't go up (the Offset function would generate an error if you tried)... the If test makes sure the code doesn't try. By the way, it might not be clear from Ed's posting, but you don't need that test for the OneDown macro, but you should test to make sure you aren't at the bottom of the worksheet... Sub OneDown() If ActiveCell.Row < ActiveSheet.Rows.Count Then ActiveCell.Offset(1, 0).Select End If End Sub -- Rick (MVP - Excel) "Grindy" wrote in message ... Thanks for the quick response Ed. A related question... What is the purpose of the "If/Then" part of your code, ie. If ActiveCell.Row 1 Then Just trying to learn why it is needed. Thanks again, bob "Ed Ferrero" wrote: Hi Grindy, To go up one cell... Sub OneUp() If ActiveCell.Row 1 Then ActiveCell.Offset(-1, 0).Select End If End Sub Going down use... ActiveCell.Offset(1, 0).Select Ed Ferrero www.edferrero.com |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel 2007 - Arrow keys backwards in one text box | Excel Discussion (Misc queries) | |||
Excel 2007: Data filter Arrow | Setting up and Configuration of Excel | |||
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) | |||
Shift and Arrow Key Code | New Users to Excel |