Activate first blank cell

  • Thread starter Thread starter serge
  • Start date Start date
S

serge

Hi,

I need to activate the first empty cell in a column.
Can someone help me?
 
you could use
range("a1").end(xldown).offset(1,0).activate
for cells in column A
You could also use
range("a65536").end(xlup).offset(1,0).activate
depends on your data
;-)
 
-----Original Message-----
Hi,

I need to activate the first empty cell in a column.
Can someone help me?

Put cursor on any data in cell and then SHIFT+END,
SHIFT+Arrow down.
 

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