PC Review


Reply
Thread Tools Rate Thread

Change Insertion Point

 
 
Sandman
Guest
Posts: n/a
 
      5th Jul 2008
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 With Quote
 
 
 
 
recrit
Guest
Posts: n/a
 
      5th Jul 2008
On Jul 5, 11:17*am, Sandman <Sand...@discussions.microsoft.com> 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 toC8
> 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
 
Reply With Quote
 
Gord Dibben
Guest
Posts: n/a
 
      5th Jul 2008
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 <(E-Mail Removed)>
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 With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I change the insertion point icon? pwkaplan Microsoft Word Document Management 1 25th Oct 2009 06:46 PM
How do I change the insertion point icon? pwkaplan Microsoft Word New Users 2 25th Oct 2009 04:12 PM
how to change the insertion point color? =?Utf-8?B?c21jMTFjYQ==?= Microsoft Excel Worksheet Functions 0 31st Oct 2006 05:11 PM
How to change the shape of insertion point? =?Utf-8?B?TWlzaGE=?= Microsoft Word Document Management 0 1st Dec 2005 05:27 PM
how do i change the shape of the insertion point? =?Utf-8?B?TWlzaGE=?= Microsoft Word Document Management 2 30th Nov 2005 05:36 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:20 AM.