Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Ease of entry on an form designed in excel

Is there a way to enable users who once they enter data into a cell, simply
hit the tab key and move to the next cell requiring data entry?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 52
Default Ease of entry on an form designed in excel

Select all of the cells that you want the user to be able to enter data into,
right click and choose Format Cells. On the Protection tab, uncheck the
"Locked" option. Click OK.

Now go to Tools--Protection--Protect Sheet. On the dialog box that
appears uncheck "Select Locked Cells". Click OK. Pressing tab will now move
you between the open cells.
--
Kevin Ciccone


"Chork" wrote:

Is there a way to enable users who once they enter data into a cell, simply
hit the tab key and move to the next cell requiring data entry?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 22,906
Default Ease of entry on an form designed in excel

Chork

Sheet event code? You did say "if data is entered".

Private Sub Worksheet_Change(ByVal Target As Range)
Select Case Target.Address
Case "$C$2"
Range("C5").Select
Case "$C$5"
Range("E2").Select
Case "$E$2"
Range("E5").Select
End Select
End Sub

This is event code which runs when a value is entered in one of the trigger
cells.

Right-click on the sheet tab and "View Code". copy/paste the code into that
module.

For non-VBA methods of moving from one cell to another in sequence see Bob
Phillips's site.

http://www.xldynamic.com/source/xld.xlFAQ0008.html


Gord Dibben MS Excel MVP

On Thu, 24 May 2007 06:05:01 -0700, Chork
wrote:

Is there a way to enable users who once they enter data into a cell, simply
hit the tab key and move to the next cell requiring data entry?


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
Can you make a tab entry form in excel like you can in word lmart Excel Worksheet Functions 1 October 27th 06 11:36 PM
data entry form Excel Aart Dijkzeul Excel Discussion (Misc queries) 1 September 25th 05 01:57 PM
excel-convert list of 52 into a form with each entry on a single mrodriguez Excel Discussion (Misc queries) 1 July 28th 05 11:10 AM
data entry form in excel Laiamb New Users to Excel 0 April 14th 05 04:07 AM
create a data entry form template in Excel 2003? david.bottomley@haltoncollege Excel Discussion (Misc queries) 0 January 19th 05 09:59 AM


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

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"