Home |
Search |
Today's Posts |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I like to pick out a column that always has data in it if that row is used, then
I can use: Dim NextRow as long with worksheets("Somesheetnamehere") nextrow = .cells(.rows.count,"A").end(xlup).row + 1 .cells(nextrow,"A").value = "something here" end with or Dim NextCell as range with worksheets("Somesheetnamehere") set nextcell = .cells(.rows.count,"A").end(xlup).offset(0,1) somerange.copy _ destination:=nextcell end with Gluefoot wrote: I'm pretty new to using forms in Excel. I'm wondering if there's a simple way to write to the last empty row in a sheet without having to use a DO - LOOP to find it. Thanks for any suggestions! -- Dave Peterson |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Is there an easy way to delete empty columns? | Excel Worksheet Functions | |||
Easy way to stack column data? | Excel Worksheet Functions | |||
Relatively easy data comparison Q? | Excel Programming | |||
easy way to Consolidate Data within workbook's various worksheets | Excel Worksheet Functions | |||
easy way to Consolidate Data within one workbook's various workshe | Excel Worksheet Functions |