Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
xlDown will stop at the first blank cell.
OK if you know there are no intervening blank cells. The preferred method is to work from bottom up. Sub findbottom() ActiveSheet.Cells(Rows.Count, 1).End(xlUp) _ .Offset(1, 0).Select End Sub Gord Dibben MS Excel MVP On Thu, 3 Aug 2006 13:30:23 -0400, ledzepe wrote: Hi everyone, I have a large Excel file that I need to append to. I want to append to the first blank row in Column A. How do I do that? My script's below: Range("A1").Select 'to select column A Range(Selection, Selection.End(xlDown)).Select 'to goto last row w/ data ???????????? 'move one row down??? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Find Function | Excel Discussion (Misc queries) | |||
Find and Replace | Excel Worksheet Functions | |||
Code needed to find records from bottom up | Excel Discussion (Misc queries) | |||
find a cells from a range of cell | Excel Worksheet Functions | |||
Excel has a "Find Next" command but no "Find Previous" command. | Excel Discussion (Misc queries) |