Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Cell Tabulation


I have a form in my excel worksheet.
How to navigate from one cell to another.
For example, I have a cell B2 and a cell D9.
When I click on "TAB", I would like to move directly from B2 to D9

Thanks for your hel

--
ecohen
-----------------------------------------------------------------------
ecohen1's Profile: http://www.excelforum.com/member.php...fo&userid=1298
View this thread: http://www.excelforum.com/showthread.php?threadid=48795

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Cell Tabulation

Hi ecohen1

If you unlock B2 and D9 in the cell properties and protect the sheet the tab key do what you want.



--
Regards Ron de Bruin
http://www.rondebruin.nl


"ecohen1" wrote in message
...

I have a form in my excel worksheet.
How to navigate from one cell to another.
For example, I have a cell B2 and a cell D9.
When I click on "TAB", I would like to move directly from B2 to D9

Thanks for your help


--
ecohen1
------------------------------------------------------------------------
ecohen1's Profile: http://www.excelforum.com/member.php...o&userid=12988
View this thread: http://www.excelforum.com/showthread...hreadid=487952



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Cell Tabulation


Thanks Ron.
But is this a way to do it programmatically or with a formula?


--
ecohen1
------------------------------------------------------------------------
ecohen1's Profile: http://www.excelforum.com/member.php...o&userid=12988
View this thread: http://www.excelforum.com/showthread...hreadid=487952

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Cell Tabulation

Which Excel version do you use ?

--
Regards Ron de Bruin
http://www.rondebruin.nl


"ecohen1" wrote in message
...

Thanks Ron.
But is this a way to do it programmatically or with a formula?


--
ecohen1
------------------------------------------------------------------------
ecohen1's Profile: http://www.excelforum.com/member.php...o&userid=12988
View this thread: http://www.excelforum.com/showthread...hreadid=487952



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Cell Tabulation


I use Excel 2003


--
ecohen1
------------------------------------------------------------------------
ecohen1's Profile: http://www.excelforum.com/member.php...o&userid=12988
View this thread: http://www.excelforum.com/showthread...hreadid=487952



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,123
Default Cell Tabulation

Do you know that you can uncheck "Select locked cells" when you protect your sheet.
This way the user can't select locked cells.

If you only have a few cells to fill in and wat to use a macro then try this

Sub test_1()
Dim myRange As Range
Dim myCell As Range
Dim myAns As Variant

Set myRange = Range("I3,K7,M11")

For Each myCell In myRange.Cells
myAns = InputBox _
(prompt:="Please enter something for cell: " & myCell.Address, _
Title:="Get Data")
If myAns < "" Then
myCell.Value = myAns
End If
Next myCell
End Sub


--
Regards Ron de Bruin
http://www.rondebruin.nl


"ecohen1" wrote in message
...

I use Excel 2003


--
ecohen1
------------------------------------------------------------------------
ecohen1's Profile: http://www.excelforum.com/member.php...o&userid=12988
View this thread: http://www.excelforum.com/showthread...hreadid=487952



  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 56
Default Cell Tabulation

Hello,
Try Unlocking the cells and then protect the sheet.

Format cell/protection click off locked then go to tools/protection/Protect
Sheet

Lime

"ecohen1" wrote:


I have a form in my excel worksheet.
How to navigate from one cell to another.
For example, I have a cell B2 and a cell D9.
When I click on "TAB", I would like to move directly from B2 to D9

Thanks for your help


--
ecohen1
------------------------------------------------------------------------
ecohen1's Profile: http://www.excelforum.com/member.php...o&userid=12988
View this thread: http://www.excelforum.com/showthread...hreadid=487952


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
how do i set up cross tabulation in excel file SIM Setting up and Configuration of Excel 1 August 28th 07 11:07 AM
Tabulation the number of different names in one column Chantal Excel Worksheet Functions 4 April 24th 07 09:36 PM
Survey Tabulation grgh228 Excel Discussion (Misc queries) 0 February 13th 07 02:04 AM
Tabulation order in excel SYBS Excel Worksheet Functions 4 July 4th 05 09:57 PM
Best way to create and present cross tabulation? masayoshi hayashi Excel Programming 0 May 20th 04 09:34 AM


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

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"