VBA code for moving 1 line down


Posted by CHRIS on February 28, 2001 7:32 AM

What is the VBA code for moving 1 line down in a worksheet module? I know that to move to the last row is application.End(x1down).select but i need to go to the one below that.



Posted by AB on February 28, 2001 7:59 AM

application.End(x1down).Offset(1,0).select


The Excel Logic Page