Move Cursor to A1

S

Silver

I wish to use shortcut keys to move cursor to A1, especially when setting
print area.
When I use "ALT+Home" the cursor moves to the first cell of the row. How do
I opt for the cursor to go to A1?
 
A

akk

Ctrl+Home would take you to cell A1 except when you have
the freeze panes on in which case it would take you to the
first row first column cell after the freeze pane.
 
D

Don Guillett

assign a shortcut to this

Sub gotoa1()
Application.Goto Range("a1")
End Sub
 
Top