PC Review
Forums
Newsgroups
Microsoft Excel
Microsoft Excel Setup
data entry
Forums
Newsgroups
Microsoft Excel
Microsoft Excel Setup
data entry
![]() |
data entry |
|
|
Thread Tools | Rate Thread |
|
|
#1 |
|
Guest
Posts: n/a
|
i have seen sheets set up so that when you reach the end
of your row, the cursor is directed back to the beginning of the row below. for example, if my last entry is g12, when i hit the right arrow, the cursor automatically goes to a13. how is this done? i am on 2000, and in page view. |
|
|
|
#2 |
|
Guest
Posts: n/a
|
Lydia, how about something like this, put in worksheet code
Private Sub Worksheet_Change(ByVal target As Excel.Range) 'moves to column A, one row down, when data is put in column G If target.Column <> 7 Then Exit Sub target.Offset(1, -6).Select End Sub -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2000 & 97 ** remove news from my email address to reply by email ** "lydia" <anonymous@discussions.microsoft.com> wrote in message news:b15301c43702$0ca504a0$a601280a@phx.gbl... > i have seen sheets set up so that when you reach the end > of your row, the cursor is directed back to the beginning > of the row below. for example, if my last entry is g12, > when i hit the right arrow, the cursor automatically goes > to a13. > how is this done? i am on 2000, and in page view. |
|
|
|
#3 |
|
Guest
Posts: n/a
|
Lydia
To TAB to desired cells....... 1. Unlock the cells you want to TAB to then protect the worksheet. If your unlocked cells are in a left to right, top to bottom series, the TAB key will move you through them as long as Sheet Protection is enabled. 2. If not in this configuration.....you can do it with a Named Range and no sheet protection. Assuming your range of cells to be A1, B2, C3, F4, A2, F1 for example. Select the Second cell(B2) you want in the range then CRTL + click your way through the range in the order you wish, ending with the First cell(A1). Name this range under Insert>Name>Define>OK. Now click on NameBox(top left corner above row 1 and col A), select the range name to highlight the range. With these cells selected, you can input data and Tab or Enter your way through the range in the order you selected. Note: there is a limit of about 25 - 30 cells to a range using this method due to a 255 character limit in a named range. Longer sheet names will reduce the number of cells considerably. If more needed, you can enter them manually in thr "refers to" box. From Debra Dalgleish..... >The limit is 255 characters in the Name definition. For example, I can >define a range of 46 non-contiguous cells, with the following string: > >=$B$2,$D$2,$F$2,$H$2,$J$2,$B$4,$D$4,$F$4,$H$4,$J$4,$B$6,$D$6,$F$6,$H$6, >$J$6,$B$8,$D$8,$F$8,$H$8,$J$8,$B$10,$D$10,$F$10,$H$10,$J$10,$B$12,$D$12, >$F$12,$H$12,$J$12,$B$14,$D$14,$F$14,$H$14,$J$14,$B$16,$D$16,$F$16,$H$16, >$J$16,$B$18,$D$18,$F$18,$H$18,$J$18,$L$3 Third method....... Assume start at A1. Hit TAB key to B1, C1, D1, E1 then hit <ENTER> key to go to A2. Done this way, the <ENTER> key takes you back to the column you started in and one row down. Gord Dibben Excel MVP On Mon, 10 May 2004 19:45:41 -0700, "lydia" <anonymous@discussions.microsoft.com> wrote: >i have seen sheets set up so that when you reach the end >of your row, the cursor is directed back to the beginning >of the row below. for example, if my last entry is g12, >when i hit the right arrow, the cursor automatically goes >to a13. >how is this done? i am on 2000, and in page view. |
|
|
|
#4 |
|
Guest
Posts: n/a
|
thanx - they all worked!
>-----Original Message----- >Lydia > >To TAB to desired cells....... > >1. Unlock the cells you want to TAB to then protect the worksheet. > >If your unlocked cells are in a left to right, top to bottom series, the TAB >key will move you through them as long as Sheet Protection is enabled. > >2. If not in this configuration.....you can do it with a Named Range and no >sheet protection. > >Assuming your range of cells to be A1, B2, C3, F4, A2, F1 for example. > >Select the Second cell(B2) you want in the range then CRTL + click your way >through the range in the order you wish, ending with the First cell(A1). Name >this range under Insert>Name>Define>OK. > >Now click on NameBox(top left corner above row 1 and col A), select the range >name to highlight the range. With these cells selected, you can input data >and Tab or Enter your way through the range in the order you selected. > >Note: there is a limit of about 25 - 30 cells to a range using this method due >to a 255 character limit in a named range. Longer sheet names will reduce the >number of cells considerably. > >If more needed, you can enter them manually in thr "refers to" box. > >From Debra Dalgleish..... > >>The limit is 255 characters in the Name definition. For example, I can >>define a range of 46 non-contiguous cells, with the following string: >> >>=$B$2,$D$2,$F$2,$H$2,$J$2,$B$4,$D$4,$F$4,$H$4,$J$4,$B$6, $D$6,$F$6,$H$6, >>$J$6,$B$8,$D$8,$F$8,$H$8,$J$8,$B$10,$D$10,$F$10,$H$10,$J $10,$B$12,$D$12, >>$F$12,$H$12,$J$12,$B$14,$D$14,$F$14,$H$14,$J$14,$B$16,$D $16,$F$16,$H$16, >>$J$16,$B$18,$D$18,$F$18,$H$18,$J$18,$L$3 > >Third method....... > >Assume start at A1. Hit TAB key to B1, C1, D1, E1 then hit <ENTER> key to go >to A2. > >Done this way, the <ENTER> key takes you back to the column you started in and >one row down. > >Gord Dibben Excel MVP > >On Mon, 10 May 2004 19:45:41 -0700, "lydia" ><anonymous@discussions.microsoft.com> wrote: > >>i have seen sheets set up so that when you reach the end >>of your row, the cursor is directed back to the beginning >>of the row below. for example, if my last entry is g12, >>when i hit the right arrow, the cursor automatically goes >>to a13. >>how is this done? i am on 2000, and in page view. > >. > |
|
|
|
#5 |
|
Guest
Posts: n/a
|
thanx - that worked!
>-----Original Message----- >Lydia, how about something like this, put in worksheet code > >Private Sub Worksheet_Change(ByVal target As Excel.Range) >'moves to column A, one row down, when data is put in column G >If target.Column <> 7 Then Exit Sub >target.Offset(1, -6).Select >End Sub > > >-- >Paul B >Always backup your data before trying something new >Please post any response to the newsgroups so others can benefit from it >Feedback on answers is always appreciated! >Using Excel 2000 & 97 >** remove news from my email address to reply by email ** >"lydia" <anonymous@discussions.microsoft.com> wrote in message >news:b15301c43702$0ca504a0$a601280a@phx.gbl... >> i have seen sheets set up so that when you reach the end >> of your row, the cursor is directed back to the beginning >> of the row below. for example, if my last entry is g12, >> when i hit the right arrow, the cursor automatically goes >> to a13. >> how is this done? i am on 2000, and in page view. > > >. > |
|
![]() |
|
| Thread Tools | |
| Rate This Thread | |
|
|

Main Page 

