Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default Automatically go to another cell

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?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10,124
Default Automatically go to another cell

You can protect other cells and the sheet and then use the tab key to goto
the next unprotected.
OR right click sheet tabview codeinsert 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

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Triple" wrote in message
...
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?


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How can I automatically copy cell contents from one cell into anot geeeberry New Users to Excel 2 July 6th 08 10:33 AM
Move cell data to another worksheet cell automatically. Alan New Users to Excel 3 April 6th 08 08:05 PM
Type 3 digits in one cell then automatically move to next cell. mulligbo Excel Discussion (Misc queries) 4 October 27th 06 11:51 PM
How do I automatically fill a cell based on another cell in Excel SouthCarolina Excel Discussion (Misc queries) 3 January 13th 06 12:52 AM
How to Automatically Move Cell datato adjacent cell.. cardingtr Excel Discussion (Misc queries) 1 October 17th 05 03:59 AM


All times are GMT +1. The time now is 04:00 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"