View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Steved Steved is offline
external usenet poster
 
Posts: 519
Default Macro to tab down 2 cells

Hello from Steved


My objective is no matter where I'm in the worksheet I want the macro to
tab down 2 cells, below is my attempt. What do i need to do please.

Sub Cursordown2()
Cells(Rows.Count, 2).End(xlUp).Offset(1, 0).Select
End Sub

I thankyou.