Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How would I go about specifying specific cells/rows/columns to skip
when the user presses tab or shift+tab? Eric |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Leave the cells/rows/columns to be skipped locked. Unlock other cells
(Format | Cells... | Protection tab). Then protect the worksheet (Tools | Protection Protect Sheet... (might be different in different versions of XL). In the resulting dialog box, uncheck 'Select locked cells'. -- Regards, Tushar Mehta www.tushar-mehta.com Excel, PowerPoint, and VBA add-ins, tutorials Custom MS Office productivity solutions In article .com, says... How would I go about specifying specific cells/rows/columns to skip when the user presses tab or shift+tab? Eric |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there any other way to do it? A few problems occur when using this
method. One, attempting do delete entire rows contents doesn't work because of the protection on the blank cells. Two, after X rows (somewhere around 10) instead of going to the 11th row it will flip back up to the 1st. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hmm nevermind.. I'll just use
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range) Then simply check the address of the selected cell and if it doesn't fall into the range I want I'll just move it to the nearest valid cell. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
skip cells with zero values in chart (cells not empty) | Charts and Charting in Excel | |||
How do I get an average for 5 when I need to skip cells? | Excel Discussion (Misc queries) | |||
How do I skip over null cells? | Excel Discussion (Misc queries) | |||
How do I skip blank cells when copying over a range of cells? | Excel Discussion (Misc queries) | |||
how to skip the blank cells | Excel Discussion (Misc queries) |