Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default Change Insertion Point

How do I send cursor to new insertion point that is not an ajacent cell? In
completing a form I want the insertion point to go from B4 to A8 to D4 to C8
etc.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 20
Default Change Insertion Point

On Jul 5, 11:17*am, Sandman wrote:
How do I send cursor to new insertion point that is not an ajacent cell? *In
completing a form I want the insertion point to go from B4 to A8 to D4 to C8
etc.



Range("A8").Select

depending on how you are triggering it you can set up different cases
for each cell to jump to...
example:

on Sheet1 object code:
Private Sub Worksheet_Change(ByVal Target As Range)
If (Target.AddressLocal = "$B$4") Then
Range("A8").Select
End If
End Sub
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Change Insertion Point

See Bob Phillips' site for a couple of methods to set the Tab order.

http://www.xldynamic.com/source/xld.xlFAQ0008.html

There is also a VBA method using sheet event code if you want it.

Post back if so.


Gord Dibben MS Excel MVP

On Sat, 5 Jul 2008 08:17:00 -0700, Sandman
wrote:

How do I send cursor to new insertion point that is not an ajacent cell? In
completing a form I want the insertion point to go from B4 to A8 to D4 to C8
etc.


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
Position insertion point at beginning of cell when editing Sue Excel Discussion (Misc queries) 9 March 28th 08 05:37 PM
Why did my Excel insertion point change to a cross? TrishF New Users to Excel 2 February 4th 07 08:11 PM
how to change the insertion point color? smc11ca Excel Worksheet Functions 0 October 31st 06 05:11 PM
Point change Rzig Excel Discussion (Misc queries) 1 October 12th 06 03:32 PM
causing macros to run at insertion point Inobugs Excel Worksheet Functions 3 February 1st 06 06:19 AM


All times are GMT +1. The time now is 02:37 PM.

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

About Us

"It's about Microsoft Excel"