Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hopefully this is an easy one...
How can I have a cell or cells selected below the currently active cell without naming the actual coordinates? I am trying to select the first blank cell in a column in order to paste added data to a spreadsheet. Thanks for the help! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you really must select the cell:
Activecell.Offset(1,0).Select Regards Trevor "Jason" wrote in message ... Hopefully this is an easy one... How can I have a cell or cells selected below the currently active cell without naming the actual coordinates? I am trying to select the first blank cell in a column in order to paste added data to a spreadsheet. Thanks for the help! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
This worked great! Another question, if I may...
What if I want to select an entire row below the currently active row. How do I do that? Jason "Trevor Shuttleworth" wrote: If you really must select the cell: Activecell.Offset(1,0).Select Regards Trevor "Jason" wrote in message ... Hopefully this is an easy one... How can I have a cell or cells selected below the currently active cell without naming the actual coordinates? I am trying to select the first blank cell in a column in order to paste added data to a spreadsheet. Thanks for the help! |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Activecell.Offset(1,0).entirerow.Select
-- HTH... Jim Thomlinson "Jason" wrote: This worked great! Another question, if I may... What if I want to select an entire row below the currently active row. How do I do that? Jason "Trevor Shuttleworth" wrote: If you really must select the cell: Activecell.Offset(1,0).Select Regards Trevor "Jason" wrote in message ... Hopefully this is an easy one... How can I have a cell or cells selected below the currently active cell without naming the actual coordinates? I am trying to select the first blank cell in a column in order to paste added data to a spreadsheet. Thanks for the help! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Row select mode to highlight active row of active cell | Excel Discussion (Misc queries) | |||
how to select row according active cell? | Excel Programming | |||
Select Row of Active Cell | Excel Programming | |||
Select First Active Cell if the cell is in a pivot table | Excel Programming | |||
Select a range of columns based on active cell | Excel Programming |