Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default How do I make the cursor move down 8 cells each time i press enter

I am entering a whole load of data into Excel and need to jump down 8 cells
each time I press enter.

So I start in c2 and need to jump to c10, c18, c26 etc... up to c82

Then I start in c3 and on to c11,c19,c27 etc... then c4,c5 etc

Then I move on to d2 and enter the 89 lines of data jumping down 8 cells
each time.

An then onto e2, f2, g2 etc

Any easy way to just make the cursor move down 8 cells each time i press
enter?

Thanks!

  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
JMB JMB is offline
external usenet poster
 
Posts: 2,062
Default How do I make the cursor move down 8 cells each time i press enter

You could try these macros. First one instructs XL to run the second macro
every time the enter key is pressed. Second one is what will actually run
when you press enter, and the third one will reset the enter key. You could
assign the first and third to a toolbar button, or you could incorporate them
into the worbook open and close event handlers so they run automatically.
Change "{Return}" to "{Enter}" if you meant the enter key on the numeric
keypad.

Sub ReMapEnterKey()
Application.OnKey "{Return}", "GoDownEight"
End Sub

Sub GoDownEight()
ActiveCell.Offset(8, 0).Activate
End Sub

Sub ResetEnterKey()
Application.OnKey "{Return}"
End Sub

"Candys Kisses" wrote:

I am entering a whole load of data into Excel and need to jump down 8 cells
each time I press enter.

So I start in c2 and need to jump to c10, c18, c26 etc... up to c82

Then I start in c3 and on to c11,c19,c27 etc... then c4,c5 etc

Then I move on to d2 and enter the 89 lines of data jumping down 8 cells
each time.

An then onto e2, f2, g2 etc

Any easy way to just make the cursor move down 8 cells each time i press
enter?

Thanks!

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,124
Default How do I make the cursor move down 8 cells each time i press enter

Right click sheet tabview codeinsert this. Will change when you enter
something in a cell.

Private Sub Worksheet_Change(ByVal Target As Range)
if target.column<3 then exit sub
Target.Offset(8).Select
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Candys Kisses" wrote in message
...
I am entering a whole load of data into Excel and need to jump down 8 cells
each time I press enter.

So I start in c2 and need to jump to c10, c18, c26 etc... up to c82

Then I start in c3 and on to c11,c19,c27 etc... then c4,c5 etc

Then I move on to d2 and enter the 89 lines of data jumping down 8 cells
each time.

An then onto e2, f2, g2 etc

Any easy way to just make the cursor move down 8 cells each time i press
enter?

Thanks!


  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3
Default How do I make the cursor move down 8 cells each time i press e

Fab, that sorted things out! Thank you so much!

"Don Guillett" wrote:

Right click sheet tabview codeinsert this. Will change when you enter
something in a cell.

Private Sub Worksheet_Change(ByVal Target As Range)
if target.column<3 then exit sub
Target.Offset(8).Select
End Sub

--
Don Guillett
Microsoft MVP Excel
SalesAid Software

"Candys Kisses" wrote in message
...
I am entering a whole load of data into Excel and need to jump down 8 cells
each time I press enter.

So I start in c2 and need to jump to c10, c18, c26 etc... up to c82

Then I start in c3 and on to c11,c19,c27 etc... then c4,c5 etc

Then I move on to d2 and enter the 89 lines of data jumping down 8 cells
each time.

An then onto e2, f2, g2 etc

Any easy way to just make the cursor move down 8 cells each time i press
enter?

Thanks!



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 make the cursor move down 8 cells each time I press ente Cadnys Kisses Setting up and Configuration of Excel 2 August 17th 07 08:08 PM
How can I make the cursor move down 8 cells each time I press ente Cadnys Kisses Setting up and Configuration of Excel 0 August 10th 07 08:50 PM
excel press enter to make active on 1st colum in new row Greg New Users to Excel 2 March 18th 07 05:21 PM
move cursor to 4th column with one press of tab key? Naveed Ahmad Purewal New Users to Excel 6 May 14th 05 04:22 AM
must press enter 2x to move cell focus Lynn Excel Discussion (Misc queries) 0 March 18th 05 06:05 PM


All times are GMT +1. The time now is 12:52 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"