Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I've created a spreadsheet and have hidden the cells that I don't intend on
using. When I use the tab button, it will advance along a row until it reaches the end of the columns I have showing, but what I want to know is how to get the tab button to advance it to the beginning of the next row when it comes to the end. Is there a way to do this? |
#2
![]() |
|||
|
|||
![]()
one way
enter in the worksheet code Private Sub Worksheet_SelectionChange(ByVal Target As Range) If ActiveCell.Offset.Column = 8 Then Selection.Offset(1, -7).Select End Sub Of course you will have to determine the column number and how far to the left . Greetings from New Zealand Bill K "Tami" wrote in message ... I've created a spreadsheet and have hidden the cells that I don't intend on using. When I use the tab button, it will advance along a row until it reaches the end of the columns I have showing, but what I want to know is how to get the tab button to advance it to the beginning of the next row when it comes to the end. Is there a way to do this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Command Button anomalies | Excel Discussion (Misc queries) | |||
Command Button VBA code | Excel Discussion (Misc queries) | |||
How to assign a macro to a commnd button | Excel Discussion (Misc queries) | |||
command button moves | Excel Discussion (Misc queries) | |||
How do I setup a spin button in excel | Excel Discussion (Misc queries) |