View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Bill Kuunders Bill Kuunders is offline
external usenet poster
 
Posts: 303
Default How do I move from cell A 10 to cell B1 with one move or click

one way..................
enter a macro activated by a shortcut

this macro will cause the cell selection to go to the top of the next column

Sub shiftup()
'
' Keyboard Shortcut: Ctrl+i
'
If ActiveCell.Row = 1 Then Exit Sub
ActiveCell(0, 2).Select
Selection.End(xlUp).Select
End Sub

Greetings from New Zealand


"chipsdad" wrote in message
...
I need to be able to, in one quick move, go from the last entry in a
spreadsheet column to the top of the next column and be able to do this
repeatedly.