LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 51
Default Moving with in an EXCEL program

Try this code, go to the sheet you require this to work on, right click on
the sheet tab and select view code, paste the following in that window.

Private Sub Worksheet_Change(ByVal Target As Range)

Dim aTabOrd As Variant
Dim i As Long

aTabOrd = Array("A1", "D6", "G8", "A2")

For i = LBound(aTabOrd) To UBound(aTabOrd)
If aTabOrd(i) = Target.Address(0, 0) Then
If i = UBound(aTabOrd) Then
Me.Range(aTabOrd(LBound(aTabOrd))).Select
Else
Me.Range(aTabOrd(i + 1)).Select
End If
End If
Next i

End Sub

"APK" wrote:

How do I move or jump from one cell to another avoiding other cells in
between. Example If I was in cell A1 and want to go to cell D6 next the go to
G8 the return turn to A2, how could I do this.
--
Goodsave

 
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
excel program 1N? Excel Discussion (Misc queries) 4 August 2nd 07 05:56 PM
Arrow Keys Moving Window Frame instead of Moving Between Cells nemmex Excel Discussion (Misc queries) 2 April 9th 07 09:08 AM
Excel Program [email protected] Excel Worksheet Functions 2 September 8th 06 06:52 PM
Excel program gill santiago Excel Discussion (Misc queries) 1 November 14th 05 03:00 PM
Excel program Sue Excel Discussion (Misc queries) 2 March 11th 05 10:15 PM


All times are GMT +1. The time now is 03:53 AM.

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"