Controlling the tab order on a protected sheet?

richrr31

New Member
Joined
Aug 25, 2002
Messages
18
Is there a way to control the order that the TAB key goes in when in a protected sheet? It currently goes from Left to Right, then Up to Down. I would like to select the order in which it hits the unprotected cells. Is this possible?
 
Hi Rich,

No, you don't need the PREVIOUS call because this routine governs the behavior after data are entered with the Enter key. You always want to go to the next cell in the tab sequence upon entering data with the Enter key.

Damon
 
Upvote 0

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
When I get to a cell with a drop-down menu, I want pressing the down key to access the list so I can choose one of the options. How do I code for that?
 
Upvote 0
How do I turn this code into a loop. I have over 100 cells on some of my sheets, so typing out the lines is annoying. How do I code something like this:

array (cell1, cell2, cell3,cell4....)

currentcell =cell1
nextcell =cell2
for array 1 to end do begin
1. Case [currentcell].Address:
[nextcell].Select
2. currentcell:= nextcell
3. nextcell:= <next cell in the array>
end
 
Upvote 0

Forum statistics

Threads
1,225,058
Messages
6,182,603
Members
453,127
Latest member
IMagill

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