Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello all
Could someone please let me know what would be the code for simply jumping to worksheet A (i.e., Sheet4, and then selecting (i.e., placing the cursor in) the first blank cell at the bottom of column A. Thanks! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi
worksheet A or sheet 4? no matter... replace with appropriate name if needed. Sheets("A").Activate '''''select from top down'''''''''' Range("A1").End(xlDown).Offset(1, 0).Select '''''Select from top up''''''''' Range("A65536").End(xlUp).Offset(1, 0).Select regards FSt1 "Mike C" wrote: Hello all Could someone please let me know what would be the code for simply jumping to worksheet A (i.e., Sheet4, and then selecting (i.e., placing the cursor in) the first blank cell at the bottom of column A. Thanks! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Option Explicit
Sub Testme() with worksheets("sheet9999") application.goto .cells(.rows.count,"A").end(xlup).offset(1,0) end with End Sub Mike C wrote: Hello all Could someone please let me know what would be the code for simply jumping to worksheet A (i.e., Sheet4, and then selecting (i.e., placing the cursor in) the first blank cell at the bottom of column A. Thanks! -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Need macro to move to first blank cell in column | Excel Discussion (Misc queries) | |||
Selecting Cells With Visual Basic or Macro Code | Excel Discussion (Misc queries) | |||
Selecting the first blank cell in a column | Excel Programming | |||
Macro to go to next blank cell in column | Excel Discussion (Misc queries) | |||
Basic question for blank column | Excel Programming |