Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Position insertion point at beginning of cell when editing | Excel Discussion (Misc queries) | |||
Why did my Excel insertion point change to a cross? | New Users to Excel | |||
how to change the insertion point color? | Excel Worksheet Functions | |||
Point change | Excel Discussion (Misc queries) | |||
causing macros to run at insertion point | Excel Worksheet Functions |