![]() |
![]() |
|
|||||||
| Excel Questions All Excel/VBA questions - formulas, macros, pivot tables, general help, etc. Please post to this forum in English only. |
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Guest
Posts: n/a
|
How do you locate the first empty row after the end of a column of data so more data can be added. My appologies, I know this is on the board somewhere, just haven't been able to find it in the last hours. Thanks in advance.
|
|
|
|
#2 |
|
Legend
Join Date: Feb 2002
Location: Minneapolis, Mn, USA
Posts: 9,704
|
Something like this perhaps (in vba):
Sub gtIt() Selection.End(xlDown).Offset(1, 0).Select End Sub In non-vba, press your "End" key and hit your down arrow twice. Cheers, Nate [ This Message was edited by: NateO on 2002-03-12 14:34 ] |
|
|
|
|
|
#3 |
|
Board Regular
Join Date: Feb 2002
Location: Houston,Texas
Posts: 418
|
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|