Thread: selection
View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
brym brym is offline
external usenet poster
 
Posts: 13
Default selection

This macro stops at every empty cell in a column when run more than once.

Sub EmptyCell()
ActiveCell.Offset(1, 0).Select
Do While Not IsEmpty(ActiveCell)
ActiveCell.Offset(1, 0).Select
Loop
End sub