Hi,
If you need an instruction which would select the first empty cell after the
last non-empty cell in the column (e.g. column A) then you could try this:
With Worksheets("Sheet1")
.Cells(.Rows.Count, "A") _
.End(xlUp).Offset(1).Activate
End With
if you want the first empty cell in the column, no matter if between
existing data or not, then try this:
With Worksheets("Sheet1")
.Columns("A:A").Find( _
What:="", _
After:=.ActiveCell).Activate
End With
if you want the first empty cell in the column after the active cell, no
matter if between existing data or not, then try this:
With Worksheets("Sheet1")
.Columns("A:A").Find( _
What:="", _
After:=.Cells(1)).Activate
End With
Regards,
KL