Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Ok, I know I've seen this before, but I'm sorry, but I've lost my reference.
Please, would someone post the snipit for finding the next empty cell in a list/column. Thanks, Don |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Don, Try this....
Dim LastRow as Long LastRow = Range("A2").End(xlDn).offset(1,0).Row This will find first empty in the list/Column or find the bottom of the list HTH, Rick "Don" wrote in message ... Ok, I know I've seen this before, but I'm sorry, but I've lost my reference. Please, would someone post the snipit for finding the next empty cell in a list/column. Thanks, Don |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
something like this
Sub test() Dim LastRow As Long LastRow = Range("A1").End(xlDown)(2).Row Debug.Print LastRow End Sub -- Gary "Don" wrote in message ... Ok, I know I've seen this before, but I'm sorry, but I've lost my reference. Please, would someone post the snipit for finding the next empty cell in a list/column. Thanks, Don |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Just use CTRL & either the up or down arrow after selecting any cell in a
column A White ---------------------------------------------------------------------------- ------- All Outgoing Mail Checked By Norton Anti-Virus 2003 ---------------------------------------------------------------------------- ------- "Don" wrote in message ... Ok, I know I've seen this before, but I'm sorry, but I've lost my reference. Please, would someone post the snipit for finding the next empty cell in a list/column. Thanks, Don |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding First Empty Cell in a Column | Excel Discussion (Misc queries) | |||
Finding Next Empty Cell in Column | Excel Programming | |||
Finding next empty empty cell in a range of columns | Excel Programming | |||
Finding next available empty cell in a row | Excel Programming | |||
Finding the next empty cell. | Excel Programming |