Automatically go to another cell

T

Triple

Can cell a1 have a go to command sending cursor/selection to b11 when a1 is
clicked on? Or can shortcut keys (ctrl,home) be set to stop in b11 instead of
a1?
 
D

Don Guillett

You can protect other cells and the sheet and then use the tab key to goto
the next unprotected.
OR right click sheet tab>view code>insert this. Could be put into
worksheet_change event to make truly automatic

Private Sub Worksheet_BeforeDoubleClick(ByVal Target As Range, Cancel As
Boolean)
If Target.Address = "$A$1" Then Range("b11").Select
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top