Activate first blank cell

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