PC Review


Reply
Thread Tools Rate Thread

Can you set up a "Return" key - like a typewriter?

 
 
KarenLZ
Guest
Posts: n/a
 
      24th Nov 2007
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
 
Reply With Quote
 
 
 
 
Gleam
Guest
Posts: n/a
 
      24th Nov 2007
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

 
Reply With Quote
 
FSt1
Guest
Posts: n/a
 
      24th Nov 2007
hi
why not enter a couple of line then use the built in form.
on the menu bar....data>form
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

 
Reply With Quote
 
KarenLZ
Guest
Posts: n/a
 
      24th Nov 2007
Never knew the Form existed! Awesome! Thanks!
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
PP2007 "Typewriter" animation and sound effect KC Microsoft Powerpoint 11 30th Dec 2009 10:45 PM
"Color Typewriter" animation slower in '07 than '03 TinoTiki Microsoft Powerpoint 1 9th May 2008 12:06 AM
How to return a proper "Successful" or "Failed" notice to SQL Server Jobs from a VB.NET application BostonNole Microsoft VB .NET 1 6th Nov 2006 05:29 PM
<FORM METHOD="post" onSubmit="return fieldcheck()" name="orientation" action="http://ws-kitty.BU.edu/AT/survey/orientation/script/write.asp" language="JavaScript"> Joeyej Microsoft ASP .NET 0 4th Jun 2004 08:55 PM
Caps Lock in "typewriter" mode Phil Windows XP Customization 1 10th Sep 2003 06:24 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:30 AM.