Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
Kycajun
 
Posts: n/a
Default I know its not access, but...(tab order)

Can you change the tab order in a worksheet? I have a checklist I have
compiled in a worksheet and with most cells locked, but have unlocked all
cells which need input. The tab order is of course left to right, is there
any way to customize this (much like you can in Access)?
  #2   Report Post  
Posted to microsoft.public.excel.misc
Chip Smith
 
Posts: n/a
Default I know its not access, but...(tab order)

if you are talking about the tab that usually says "sheet1", "sheet 2", etc.
then yes you can i fyou have excel 2003, simply by right clicking the tab and
going to tab color

--
--Chip Smith--



"Kycajun" wrote:

Can you change the tab order in a worksheet? I have a checklist I have
compiled in a worksheet and with most cells locked, but have unlocked all
cells which need input. The tab order is of course left to right, is there
any way to customize this (much like you can in Access)?

  #3   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default I know its not access, but...(tab order)

You cannot change the Tab order of unlocked cells in a sheet.

Left to right and top to bottom is the order.

You can use other methods to give a Tab order of your choosing.

See Bob Phillips' site for help on the "named range" method.

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

You can also use VBA event code to set an order.

Post back if you want an example of that.


Gord Dibben MS Excel MVP

On Wed, 21 Jun 2006 08:29:50 -0700, Kycajun
wrote:

Can you change the tab order in a worksheet? I have a checklist I have
compiled in a worksheet and with most cells locked, but have unlocked all
cells which need input. The tab order is of course left to right, is there
any way to customize this (much like you can in Access)?


  #4   Report Post  
Posted to microsoft.public.excel.misc
Kycajun
 
Posts: n/a
Default I know its not access, but...(tab order)

I am actually reading up on Macros (VBA) right now. I have never ventured
that far into Excel, so this is brand new territory for me. I read a couple
of other posts that say you can set up a macro to run your preferred tab
order. If you have any help or if you think your example may help me get
started, I would love the help. If not, wish me luck ~ I think I have a lot
of reading to do! Thanks to all for the replies.

"Gord Dibben" wrote:

You cannot change the Tab order of unlocked cells in a sheet.

Left to right and top to bottom is the order.

You can use other methods to give a Tab order of your choosing.

See Bob Phillips' site for help on the "named range" method.

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

You can also use VBA event code to set an order.

Post back if you want an example of that.


Gord Dibben MS Excel MVP

On Wed, 21 Jun 2006 08:29:50 -0700, Kycajun
wrote:

Can you change the tab order in a worksheet? I have a checklist I have
compiled in a worksheet and with most cells locked, but have unlocked all
cells which need input. The tab order is of course left to right, is there
any way to customize this (much like you can in Access)?



  #5   Report Post  
Posted to microsoft.public.excel.misc
Gord Dibben
 
Posts: n/a
Default I know its not access, but...(tab order)

Here is the example.

''moves from C2 through E5 at entry of data
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 worksheet event code.

Right-click on the sheet tab and "View Code"

Copy/paste the code into that sheet module..

Adjust the cell refs and add more Cases as you need.

NOTE: the ENTER key can be used as well as the Tab key.


Gord

On Wed, 21 Jun 2006 10:39:01 -0700, Kycajun
wrote:

I am actually reading up on Macros (VBA) right now. I have never ventured
that far into Excel, so this is brand new territory for me. I read a couple
of other posts that say you can set up a macro to run your preferred tab
order. If you have any help or if you think your example may help me get
started, I would love the help. If not, wish me luck ~ I think I have a lot
of reading to do! Thanks to all for the replies.

"Gord Dibben" wrote:

You cannot change the Tab order of unlocked cells in a sheet.

Left to right and top to bottom is the order.

You can use other methods to give a Tab order of your choosing.

See Bob Phillips' site for help on the "named range" method.

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

You can also use VBA event code to set an order.

Post back if you want an example of that.


Gord Dibben MS Excel MVP

On Wed, 21 Jun 2006 08:29:50 -0700, Kycajun
wrote:

Can you change the tab order in a worksheet? I have a checklist I have
compiled in a worksheet and with most cells locked, but have unlocked all
cells which need input. The tab order is of course left to right, is there
any way to customize this (much like you can in Access)?




Gord Dibben MS Excel MVP


  #6   Report Post  
Posted to microsoft.public.excel.misc
Kycajun
 
Posts: n/a
Default I know its not access, but...(tab order)

Thanks a bunch. I will get started on it here shortly. I appreciate the
help.

"Gord Dibben" wrote:

Here is the example.

''moves from C2 through E5 at entry of data
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 worksheet event code.

Right-click on the sheet tab and "View Code"

Copy/paste the code into that sheet module..

Adjust the cell refs and add more Cases as you need.

NOTE: the ENTER key can be used as well as the Tab key.


Gord

On Wed, 21 Jun 2006 10:39:01 -0700, Kycajun
wrote:

I am actually reading up on Macros (VBA) right now. I have never ventured
that far into Excel, so this is brand new territory for me. I read a couple
of other posts that say you can set up a macro to run your preferred tab
order. If you have any help or if you think your example may help me get
started, I would love the help. If not, wish me luck ~ I think I have a lot
of reading to do! Thanks to all for the replies.

"Gord Dibben" wrote:

You cannot change the Tab order of unlocked cells in a sheet.

Left to right and top to bottom is the order.

You can use other methods to give a Tab order of your choosing.

See Bob Phillips' site for help on the "named range" method.

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

You can also use VBA event code to set an order.

Post back if you want an example of that.


Gord Dibben MS Excel MVP

On Wed, 21 Jun 2006 08:29:50 -0700, Kycajun
wrote:

Can you change the tab order in a worksheet? I have a checklist I have
compiled in a worksheet and with most cells locked, but have unlocked all
cells which need input. The tab order is of course left to right, is there
any way to customize this (much like you can in Access)?



Gord Dibben MS Excel MVP

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
Generate Auto Order Number cher Excel Discussion (Misc queries) 1 March 28th 06 06:15 PM
Excel Access and Oracle Chris K Excel Discussion (Misc queries) 1 February 17th 06 06:16 PM
Linking Large Access Table into Excel Steven M. Britton Links and Linking in Excel 1 December 30th 05 11:28 PM
Print order of worksheets Stray Doug Excel Discussion (Misc queries) 3 September 21st 05 12:37 AM
Excel and Access talking GJR3599 Excel Discussion (Misc queries) 0 March 29th 05 04:59 PM


All times are GMT +1. The time now is 11:37 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"