Input Order

TSpradling

New Member
Joined
Mar 24, 2002
Messages
5
I have created a spreadsheet for a non-sophisticated group of users. This sheet requires the user to enter data into three cells, and then the desired result is calculated and displayed.

Is there a function in Excel that is similar to Access in which you can set the order of input automatically for the user? (i.e., after input in A6, jump to B12, then to C6, and then return to A6)

Thanks in advance,
Tom
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Try the following code in the module for your worksheet:

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = "$A$6" Then
[b12].Select
ElseIf Target.Address = "$B$12" Then
[c6].Select
ElseIf Target.Address = "$C$6" Then
[a6].Select
End If
End Sub
 
Upvote 0
Al, Thanks for the tip. Sorry it's taken so long to get back. This code works great for the first two cells, but after entering data into the third cell it reverts to the default and advances down instead of back up to the first entry cell. Any ideas? As always thanks for such a prompt response.
 
Upvote 0
On 2002-01-14 15:42, TSpradling wrote:
I have created a spreadsheet for a non-sophisticated group of users. This sheet requires the user to enter data into three cells, and then the desired result is calculated and displayed.

Is there a function in Excel that is similar to Access in which you can set the order of input automatically for the user? (i.e., after input in A6, jump to B12, then to C6, and then return to A6)

Thanks in advance,
Tom

I fy ou want a non-VBA solution, this is what you do ...

1. Highlite the cells that need inputting by the user, and unprotect the cells.
2. Protect the worksheet with or without a password.
3. Now when the user enters the TAB key it takes the user from one unprotected cell to the next in order and then back to the starting unprotected cell.

Hope This Helps!


_________________
Yogi Anand

Edit: Deleted inactive website from hardcoded signature
This message was edited by Yogi Anand on 2003-01-19 13:30
 
Upvote 0

Forum statistics

Threads
1,214,641
Messages
6,120,694
Members
448,979
Latest member
DET4492

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top