Goto next used row

J

JonWayn

Is there any range method that emulates the Ctrl+{DownArrow} key
combination? - i.e. activating the next row that has a non-empty value,
skipping the empty ones.
 
E

EdgeOfCity

activecell.end(xldown).row
or
range("a1").end(xldown).row
or find the last row that has a non-empty value
range("a65536").end(xlup).row
 
Top