Goto next used row

  • Thread starter Thread starter JonWayn
  • Start date Start date
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.
 
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
 
Back
Top