Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have over 3000 lines (rows) of data that I need to enter manually. There
are 14 columns associated with each line. When I complete the entry for one line, I would like it to automatically jump to the first column of the next line (like a "Return" key on a typewriter). How can this be accomplished? Thanks! Karen |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The following code will go to the next row as soon as a ceel in column 15 is
selected. If you are entering data manually, then after each entry you will movw to the next cell to the right. So if you do the same thing on the 14 th column the macro will select the first column on the next row. The macro goes on the worksheet. Private Sub Worksheet_SelectionChange(ByVal Target As Range) If ActiveCell.Column = 15 Then ActiveCell.Offset(1, -14).Select End Sub "KarenLZ" wrote: I have over 3000 lines (rows) of data that I need to enter manually. There are 14 columns associated with each line. When I complete the entry for one line, I would like it to automatically jump to the first column of the next line (like a "Return" key on a typewriter). How can this be accomplished? Thanks! Karen |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hi
why not enter a couple of line then use the built in form. on the menu bar....dataform no code needed. Regards FSt1 "KarenLZ" wrote: I have over 3000 lines (rows) of data that I need to enter manually. There are 14 columns associated with each line. When I complete the entry for one line, I would like it to automatically jump to the first column of the next line (like a "Return" key on a typewriter). How can this be accomplished? Thanks! Karen |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Never knew the Form existed! Awesome! Thanks!
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
function to return day in the form "Monday", "Tuesday" etc given . | Excel Worksheet Functions | |||
Check if cells contain the word "Thailand", return "TRUE" | Excel Worksheet Functions | |||
If (A1 = "ValueA" & C1 = "ValueB") return the quantity of matches | Excel Discussion (Misc queries) | |||
Can I enter a "Y" and return "Yes" in the same cell? PART 2 | Excel Programming |