Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In a worksheet that someone can enter as many rows of
data as they want, is there an easy way of finding the last row that data has been entered to for looping purposes? thanks! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim rng as Range, cell as Range
set rng = Range(cells(1,1),Cells(rows.count,1).End(xlup)) for each cell in rng Next -- Regards, Tom Ogilvy "Clint" wrote in message ... In a worksheet that someone can enter as many rows of data as they want, is there an easy way of finding the last row that data has been entered to for looping purposes? thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding the first value that is less than zero | Excel Worksheet Functions | |||
Finding second value? | Excel Worksheet Functions | |||
Finding 1st,2nd,3rd etc | Excel Discussion (Misc queries) | |||
Finding Row | Excel Discussion (Misc queries) | |||
finding the "end" | New Users to Excel |