How to jump to fisr empty row?

  • Thread starter Thread starter Jan Nademlejnsky
  • Start date Start date
J

Jan Nademlejnsky

I would like to use in my macro a feature to jump into the first empty row:

Let say I am in A3:

Sub JumpToEmpty()
Selection.End(xlDown).Select
????How to move from above to one cell down????
end sub

Thanks

Jan
 
Hi,

try

Sub JumpToEmpty()
Selection.End(xlDown).Offset(1,0).select <<<<<<
????How to move from above to one cell down????
end sub

Charle
 
I found it:

Sub JumpToEmpty()
ActiveCell.End(xlDown).Offset(1, 0).Select ' Goes down into first empty
cell
end sub

Jan
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top