Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I created a worksheet in Excel 2003 where with protection I can force editing
in only one cell. The cursor only rests in that cell, so that when typing you don't have to first move the cursor to that cell. In an older version of Excel, I can't do that. I can have it tell me my entry is invalid for the cell my cursor is in. Is there a way in earlier versions to force the cursor to only rest on a specific cell? Validation, drop-down box type things? I can't think of the word. Thanks, Bob |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Lock all the cells on the worksheet except the cell to edit--keep that unlocked.
(Format|Cells|Protection tab is where you do that work) Then add a macro that protects the worksheet (nicely) when the workbook opens: Private Sub Workbook_Open() With Worksheets("Sheet99999") .Unprotect Password:="hi" .EnableSelection = xlUnlockedCells .Protect Password:="hi", DrawingObjects:=True, _ Contents:=True, Scenarios:=True End With End Sub In fact, in xl2k and below, this setting wasn't remembered when you closed the workbook and reopened. Setting it in code was the only way to do this. Bob wrote: I created a worksheet in Excel 2003 where with protection I can force editing in only one cell. The cursor only rests in that cell, so that when typing you don't have to first move the cursor to that cell. In an older version of Excel, I can't do that. I can have it tell me my entry is invalid for the cell my cursor is in. Is there a way in earlier versions to force the cursor to only rest on a specific cell? Validation, drop-down box type things? I can't think of the word. Thanks, Bob -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Multiple Excel versions. | Excel Discussion (Misc queries) | |||
How can I verify that an Excel file will work with older versions | Excel Discussion (Misc queries) | |||
Pasting Word table cell with paragraph markers into single Excel c | Excel Discussion (Misc queries) | |||
Replace Fx with = in Excel as older excel versions were. | Excel Discussion (Misc queries) | |||
GET.CELL | Excel Worksheet Functions |